1.0.0 • Published 1 year ago

@ptkhanh94npm/rem-sed-eum v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

typed-array-byte-offset Version Badge

github actions coverage License Downloads

npm badge

Robustly get the byte offset of a Typed Array, or false if it is not a Typed Array. Works cross-realm, in every engine, even if the byteOffset property is overridden.

Example

var typedArrayByteOffset = require('typed-array-byte-offset');
var assert = require('assert');

assert.equal(false, typedArrayByteOffset(undefined));
assert.equal(false, typedArrayByteOffset(null));
assert.equal(false, typedArrayByteOffset(false));
assert.equal(false, typedArrayByteOffset(true));
assert.equal(false, typedArrayByteOffset([]));
assert.equal(false, typedArrayByteOffset({}));
assert.equal(false, typedArrayByteOffset(/a/g));
assert.equal(false, typedArrayByteOffset(new RegExp('a', 'g')));
assert.equal(false, typedArrayByteOffset(new Date()));
assert.equal(false, typedArrayByteOffset(42));
assert.equal(false, typedArrayByteOffset(NaN));
assert.equal(false, typedArrayByteOffset(Infinity));
assert.equal(false, typedArrayByteOffset(new Number(42)));
assert.equal(false, typedArrayByteOffset('foo'));
assert.equal(false, typedArrayByteOffset(Object('foo')));
assert.equal(false, typedArrayByteOffset(function () {}));
assert.equal(false, typedArrayByteOffset(function* () {}));
assert.equal(false, typedArrayByteOffset(x => x * x));
assert.equal(false, typedArrayByteOffset([]));

const buffer = new ArrayBuffer(32);

assert.equal(8, typedArrayByteOffset(new Int8Array(buffer, 8)));
assert.equal(8, typedArrayByteOffset(new Uint8Array(buffer, 8)));
assert.equal(8, typedArrayByteOffset(new Uint8ClampedArray(buffer, 8)));
assert.equal(4, typedArrayByteOffset(new Int16Array(buffer, 4)));
assert.equal(4, typedArrayByteOffset(new Uint16Array(buffer, 4)));
assert.equal(8, typedArrayByteOffset(new Int32Array(buffer, 8)));
assert.equal(8, typedArrayByteOffset(new Uint32Array(buffer, 8)));
assert.equal(16, typedArrayByteOffset(new Float32Array(buffer, 16)));
assert.equal(16, typedArrayByteOffset(new Float64Array(buffer, 16)));
assert.equal(16, typedArrayByteOffset(new BigInt64Array(buffer, 16)));
assert.equal(16, typedArrayByteOffset(new BigUint64Array(buffer, 16)));

Tests

Simply clone the repo, npm install, and run npm test

fullwidthjsdiffspinnerswordbreakObservableswhichECMAScript 5compile lesswatchbrowserseseveryArrayBufferinputviewcurlreduxairbnbobjsignalsscheme-validationjsxappfilewritemapreduceWeakMap$.extendCSSStyleDeclarationtestingarraybufferfilterreducefsstablepushWeakSettoSortedagentglobroute53queueMicrotaskpruneRegExp.prototype.flagsintrinsicprotocol-buffersponyfillutilitymochaURLSearchParamscjkhookformcolorsiefast-deep-copyparentsstylingparsestdlibhas-owndescriptionbindrm -rffseventsdayjslinuxhttpsajaxbluebirdObject.isInt8ArraycolorvariablesserializationworkflowstatedataViewdeep-copygradients cssidleinvariantterminalformlazymetadataAsyncIteratorES2017koreanECMAScript 3findrapiderror-handlinguninstallmovewritableFunction.prototype.namemime-dbspecsloti18ncallbindpnpm9.envsidelruelbweakmapawesomesaucetermiddropclonearktypeReactiveExtensionsPromisefile systemcall-boundjavascriptmomentcollection.es6es-shimsmatchesSymbol.toStringTagoptimizerruntimesomefetch_.extendbundlercss-in-jseslint-pluginStreamsrequestcode pointsdependenciesmkdirpES7formattinghigher-ordermixinsmkdirsshrinkwrapObject.keysequalrmdirwatcherECMAScript 2016classnamesetImmediatepropertiesES2016lookECMAScript 2017concatMaprequireargsfast-clonehashcircularrecursivetapecloudsearchstatelessfindLastIndexpromisecharactersgdprtoobjectwebawseventstaprestfulstarteropenparserforEachpolyfilltypedarrayshotES2023loadingdefinePropertyUint8ClampedArraywalkingdebuggerexit-codepreprocessorprocesscloudwatchlasthardlinksmatchyamlbootstrap cssvestes2015[[Prototype]]datastructureirqcensorpyyamlmaptostringtagcallboundjwtchinesecss lessoutputbatchsafecolumnsimportec2sigtermvalidateObject.valuespicomatches8robustoffsetconsoleworkspace:*ECMAScript 2022BigUint64ArrayextraloggersetPrototypeOfobjectrdstelephonesimpledbfindLastECMAScript 2020log0deep-clonecallchromeassignMaptrimRightregularcoresameValueZerofoldersymboljapaneseresolveprivatestreamscharacterdotenvwatchingArray.prototype.flatupInt16Arrayvisualexectextzerostylesheetsortreact-hooksvalidationaccessibilityhasOwnPropertyESpersistent256testerstatusbannerdescriptorsinatracloudformationcodescompilergetintrinsicredactsliceexpressionrandomtyped arrayreducerqsfunctionimmutablemimees5fpsprefixcreateeventDispatcherlistenersFloat32ArrayglacierassertindicatorthroatECMAScript 2018Object.getPrototypeOfreuseES2020connectpropertyconfigurableeventEmittermimetypeshasObject.fromEntriesArrayBuffer#slicexhrextensionenvincludesassertionoptimistauthenticationcliapollofastsharedestreeregular expressions-0prettyuuidratelimitphonefast-deep-cloneperformantmakeperformancecollection@@toStringTagTypeScriptstringautoprefixerprotobufnativeFloat64Arraycall-bindformatexitfunctionalregexfunctionsES5electrones7asyncjsonRFC-6455groupByconcatfixed-widthBigInt64ArraydeepclonepostcssstringifytypanionArray.prototype.findLastmonorepoisECMAScript 7Array.prototype.findLastIndexoperating-systemweaksetbcrypttoStringTageslintReactiveXfastifyboundcontainsshebangentriesserializercloudfrontflagsmergeArray.prototype.flattenclassnamesgettercheckcommand-lineimportexportchromiumsqschannelstyleguidemodulesTypeBoxdebugquerystringrfc4122typesafeisConcatSpreadableinternaltrimEndargumenttestObservableUint16Arrayquotewarninglinkpasswordtaskl10nconcurrencyhelperswhatwghasOwnecmascripttrimLeftpreserve-symlinks
1.0.0

1 year ago