Travis build: 2024 [cron]
This commit is contained in:
@ -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;
|
||||
Reference in New Issue
Block a user