V1 with working cmdline interface for easy of using GIT
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import isFunction from "./isFunction.js";
|
||||
export const isFileLike = (value) => Boolean(value
|
||||
&& typeof value === "object"
|
||||
&& isFunction(value.constructor)
|
||||
&& value[Symbol.toStringTag] === "File"
|
||||
&& isFunction(value.stream)
|
||||
&& value.name != null
|
||||
&& value.size != null
|
||||
&& value.lastModified != null);
|
||||
Reference in New Issue
Block a user