You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
310 B
11 lines
310 B
export function isPromise(value: () => any) {
|
|
return value && Object.prototype.toString.call(value) === "[object Promise]"
|
|
}
|
|
|
|
export function slash(path: string) {
|
|
const isExtendedLengthPath = path.startsWith("\\\\?\\")
|
|
if (isExtendedLengthPath) {
|
|
return path
|
|
}
|
|
return path.replace(/\\/g, "/")
|
|
}
|
|
|