mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: add isPromise utils
This commit is contained in:
parent
0ed7aaac88
commit
35260e024a
@ -1,5 +1,5 @@
|
||||
// Utils
|
||||
import { createNamespace, addUnit, noop } from '../utils';
|
||||
import { createNamespace, addUnit, noop, isPromise } from '../utils';
|
||||
import { toArray, readFile, isOversize, isImageFile } from './utils';
|
||||
|
||||
// Mixins
|
||||
@ -107,7 +107,7 @@ export default createComponent({
|
||||
return;
|
||||
}
|
||||
|
||||
if (response.then) {
|
||||
if (isPromise(response)) {
|
||||
response
|
||||
.then(() => {
|
||||
this.readFile(files);
|
||||
@ -182,7 +182,7 @@ export default createComponent({
|
||||
return;
|
||||
}
|
||||
|
||||
if (response.then) {
|
||||
if (isPromise(response)) {
|
||||
response
|
||||
.then(() => {
|
||||
this.deleteFile(file, index);
|
||||
|
@ -19,6 +19,10 @@ export function isObject(val: any): val is Record<any, any> {
|
||||
return val !== null && typeof val === 'object';
|
||||
}
|
||||
|
||||
export function isPromise<T = any>(val: unknown): val is Promise<T> {
|
||||
return isObject(val) && isFunction(val.then) && isFunction(val.catch);
|
||||
}
|
||||
|
||||
export function get(object: any, path: string): any {
|
||||
const keys = path.split('.');
|
||||
let result = object;
|
||||
|
Loading…
x
Reference in New Issue
Block a user