10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
function isLength(value) {
|
|
return Number.isSafeInteger(value) && value >= 0;
|
|
}
|
|
|
|
exports.isLength = isLength;
|