[improvement] utils ts (#668)

This commit is contained in:
neverland 2018-09-28 16:43:39 +08:00 committed by GitHub
parent 7c7d69230d
commit c71a763ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 9 deletions

View File

@ -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'])

View File

@ -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
};

View File

@ -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');
} }