3.7.80 • Published 2 years ago

@zitterorg/deserunt-beatae-fuga v3.7.80

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years 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

regularObject.definePropertyvaluesArray.prototype.flatvestfunctionalframeworkcolourWeakMapvpcRxPushdeep-copykeysdefineWebSocketstypesafeECMAScript 2022stylingcliArray.prototype.includeslimitedes6jsonString.prototype.trimloggercharsethttpeventDispatcherRxJSbrowserslistcore-jsawaitespreeagentweaksetcomparecallreact-hookshardlinksi18nconsolecollection.es6deepcopyarktypesetterapolloupbddtostringtagECMAScript 2016lintclonebeanstalkSymbol.toStringTagworkerlogging-0fast-cloneshimcss-in-jsmapReactiveXfastgenericsmatchwaitlazyvalidatesymbolcryptoreact animationfunction.lengthYAMLpostcss-pluginstablearraydependenciesfind-upinferencegetoptcontainsmatchAllsyntaxspecwritablewordwrapautoprefixerreactcode pointswhatwgimportexportprogresspipewhichincludessequenceclass-validatortypescriptES2015toSortedUint16ArrayrecursiveObject.assignloadingStreamttytypescommandersymbolsrangeerrorhassort256flaghttpsHyBizerohashzodapiObject.getPrototypeOfformattingxhrECMAScript 7nodecollectionenvironmentsregular expressionfolderimmeraccessibilitycolornegative_.extendstdlibRFC-6455look-upcjkArrayBuffer#slicehooksbreaklinewrapcall-boundemitMapECMAScript 2019escapeprotocol-bufferselasticachebundlingl10nchromebyteglaciercoerciblerobustopenerdayjsecmascriptObject.ispackage managerbuffersthreearraybuffercallbindRegExp.prototype.flagssetloadbalancingeventsdataviewequalitypopmotionnativefindLaststreams2awesomesaucejsonpathES2020patchscheme-validationhookformoutputreduceInt8Arraylibphonenumberwaapiprivate dataurlspyyamlmruInt32Arraypathasynctoobjecttoolkites8getjsdiffUint8ClampedArrayguidindicatorparentidlesidejsthrottlepromiseboundresolveES2018schemermdirreact-hook-formperformantexecconfigurabletypeofbatchonceutilitiesautoscalinglognodejsassertsnsponyfilloptimizertrimStarteslintconfigMicrosoftbundlerfixed-width
3.7.80

2 years ago

3.7.79

2 years ago

3.6.79

2 years ago

3.6.78

2 years ago

3.6.77

2 years ago

3.6.76

2 years ago

3.6.75

2 years ago

3.6.74

2 years ago

3.6.73

2 years ago

3.6.72

2 years ago

3.6.71

2 years ago

3.6.69

2 years ago

3.6.68

2 years ago

3.6.67

2 years ago

3.6.70

2 years ago

3.6.66

2 years ago

3.4.58

2 years ago

3.2.35

2 years ago

3.4.59

2 years ago

3.3.47

2 years ago

3.2.34

2 years ago

3.3.48

2 years ago

3.2.37

2 years ago

3.5.66

2 years ago

3.3.49

2 years ago

3.2.36

2 years ago

3.2.39

2 years ago

3.2.38

2 years ago

3.4.51

2 years ago

3.4.52

2 years ago

3.4.53

2 years ago

3.4.54

2 years ago

3.4.55

2 years ago

3.4.56

2 years ago

3.2.33

2 years ago

3.4.57

2 years ago

3.2.46

2 years ago

3.2.45

2 years ago

3.2.47

2 years ago

3.4.61

2 years ago

3.4.62

2 years ago

3.3.50

2 years ago

3.4.63

2 years ago

3.3.51

2 years ago

3.2.40

2 years ago

3.4.64

2 years ago

3.4.65

2 years ago

3.2.42

2 years ago

3.4.66

2 years ago

3.2.41

2 years ago

3.2.44

2 years ago

3.2.43

2 years ago

2.2.33

2 years ago

3.4.60

2 years ago

2.2.32

2 years ago

2.2.31

2 years ago

2.2.30

2 years ago

2.2.28

2 years ago

2.2.29

2 years ago

1.2.26

2 years ago

2.2.26

2 years ago

2.2.27

2 years ago

1.2.23

2 years ago

1.2.24

2 years ago

1.1.16

2 years ago

1.1.15

2 years ago

1.2.25

2 years ago

1.1.19

2 years ago

1.1.18

2 years ago

1.1.17

2 years ago

1.1.23

2 years ago

1.1.22

2 years ago

1.1.21

2 years ago

1.1.20

2 years ago

1.1.14

2 years ago

1.1.13

2 years ago

1.1.12

2 years ago

1.0.11

2 years ago

1.1.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago