mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[improvement] utils ts (#668)
This commit is contained in:
parent
7c7d69230d
commit
c71a763ad1
@ -9,7 +9,7 @@ const rename = require('gulp-rename');
|
|||||||
const isProduction = process.env.NODE_ENV === 'production';
|
const isProduction = process.env.NODE_ENV === 'production';
|
||||||
const src = path.join(__dirname, '../packages');
|
const src = path.join(__dirname, '../packages');
|
||||||
const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist');
|
const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist');
|
||||||
const ext = ['js', 'ts', 'less', 'json', 'wxml'];
|
const ext = ['ts', 'less', 'json', 'wxml'];
|
||||||
|
|
||||||
function copy(ext) {
|
function copy(ext) {
|
||||||
return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist));
|
return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist));
|
||||||
@ -29,7 +29,6 @@ gulp.task('compile-less', () => {
|
|||||||
.pipe(gulp.dest(dist));
|
.pipe(gulp.dest(dist));
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('compile-js', () => copy('js'));
|
|
||||||
gulp.task('compile-ts', () =>
|
gulp.task('compile-ts', () =>
|
||||||
gulp
|
gulp
|
||||||
.src([src + '/**/*.ts'])
|
.src([src + '/**/*.ts'])
|
||||||
|
7
dist/common/utils.js
vendored
7
dist/common/utils.js
vendored
@ -3,11 +3,8 @@ function isDef(value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function isObj(x) {
|
function isObj(x) {
|
||||||
const type = typeof x;
|
var type = typeof x;
|
||||||
return x !== null && (type === 'object' || type === 'function');
|
return x !== null && (type === 'object' || type === 'function');
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export { isObj, isDef };
|
||||||
isObj,
|
|
||||||
isDef
|
|
||||||
};
|
|
@ -1,8 +1,8 @@
|
|||||||
function isDef(value) {
|
function isDef(value: any): boolean {
|
||||||
return value !== undefined && value !== null;
|
return value !== undefined && value !== null;
|
||||||
}
|
}
|
||||||
|
|
||||||
function isObj(x) {
|
function isObj(x: any): boolean {
|
||||||
const type = typeof x;
|
const type = typeof x;
|
||||||
return x !== null && (type === 'object' || type === 'function');
|
return x !== null && (type === 'object' || type === 'function');
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user