Travis build: 2024 [cron]

This commit is contained in:
30secondsofcode
2018-05-02 21:04:11 +00:00
parent 2c00b520a9
commit 02162a9fd5
6 changed files with 118 additions and 53 deletions

View File

@ -3,5 +3,7 @@ Array.isArray(val)
? val.length
: val && typeof val === 'object'
? val.size || val.length || Object.keys(val).length
: typeof val === 'string' ? new Blob([val]).size : 0;
: typeof val === 'string'
? new Blob([val]).size
: 0;
module.exports = size;