UNPKG

670 BSource Map (JSON)View Raw
1{"version":3,"sources":["internal/tolength.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,MAAM,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC;AAE3C;;GAEG;AACH,MAAM,UAAU,QAAQ,CAAC,KAAU;IACjC,MAAM,GAAG,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC;IAC7B,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC;AACpD,CAAC","file":"tolength.js","sourcesContent":["import { toInteger } from './tointeger';\nconst maxSafeInteger = Math.pow(2, 53) - 1;\n\n/**\n * @ignore\n */\nexport function toLength(value: any): number {\n const len = toInteger(value);\n return Math.min(Math.max(len, 0), maxSafeInteger);\n}\n"]}
\No newline at end of file