INIT
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
export function isFunction(value) {
|
||||
return typeof value === "function";
|
||||
}
|
||||
export function isObject(value) {
|
||||
return value !== null && typeof value === "object";
|
||||
}
|
||||
export function isElement(value) {
|
||||
return value instanceof Element;
|
||||
}
|
||||
Reference in New Issue
Block a user