npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@teamteanpm2024/sapiente-occaecati-dolor

v2.0.5

Published

[![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![dependency status][5]][6] [![dev dependency status][7]][8] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url]

Downloads

10

Maintainers

shivamkalsi2024shivamkalsi2024

Keywords

RFC-6455user-streamscode pointsweaksetstreamnativeObject.valuestypedarraysisConcatSpreadableargvcomparenodejsloggingecmascriptguidserializewalkargumentECMAScript 2021gettervaluestypedqueuewrapUint8ClampedArrayjson-schema-validatorstatusscheme-validationrapidwarningcomputed-typesflatcolumnname256fantasy-landless mixinsserializationtypedarrayES2022json-schemainternalkarmajsutilitynpmreact posemixinsjwtspringmapreducees2018tc39UnderscoregenericswriteeslintconfigdragES7optioneveryimmutablewritableFloat32ArrayjsxInt8ArraygetsymlinksincludesthrottleObject.entrieslockfileObject.isloadingsigintenumerablewatchFiletrimStartcompile lessshimtypesafecore-jsmimeYAMLpipeserializer6to5interruptses8watchingcloudsearchio-tswgetemojiReactiveXvalidationUint32ArraybusyESnextindicatorgdprclilanguagemulti-packagesameValueZerocopyUint8ArrayArrayBuffer#slicesyntaxerrorreadArray.prototype.filterstyleguidegetintrinsicregular expressionstructuredClonefind-upWeakMapauthenticationinspectprivate datapropmodulebootstrap cssECMAScript 2022testcloneextensionarraybufferES2020shamelbconstelectronStyleSheetfromprunepositiveaccessorfastifyescaperedux-toolkitcheckchromiumdom-testing-libraryInt32ArraykoreanURLSearchParamsartES2016ECMAScript 2019colorsES8xhrlistenersclass-validatorairbnbschemequoteWebSocketwafreact-hook-formTypeBoxshrinkwrapes5ES6termtyped arrayreuseObject.fromEntriesratelimitObject.assignwordbreakpreprocessorec2es6css-in-jstypeagentURLflatMapirqi18nhigher-orderconcatMapreact-testing-librarysnstoStringTagsetImmediatecolourdirectorypyyamlvpcwatchhardlinksstringtrimRightclassnamefastclonecsstslibbrowserlisttestingparentsdynamodbtoArraysignalstypeofl10nbootstrap lessendermatchlastajvcallvalidatemkdirppnpm9protoconcatparserpostcss-pluginpoint-freepostcsscss variableautoprefixerPushoperating-systemqsparentextrametadataawesomesauce3dparsingvariablesvalid$.extendtapasynccjkreact animationsharedredactrdstelephonees7zodregular expressionsFloat64ArraySymbol.toStringTagiterateprotobufJSONfile systemfastcopydotenvdeepcopylesspackage.jsonless compilerenvironmentimportexportES2021fullwidthECMAScript 6nodedescriptionflagsymbolsa11yless.jsansiconfigbcryptcloudfrontES2015cryptoshebang.envstoragegatewaychinesereact-hookscharactersqueueMicrotaskconsumerm -frassertsbalancedeslintsomeReflect.getPrototypeOfsymboljoiawaitapithreetraverseObjectassertioncloudwatchfpseast-asian-widthschemastarteriamMicrosoftjsdomhasformatdependency managertrimLeftes2016HyBinegative zerobundlertaskharmonypicomatchmodulesnumberconsolecharacter__proto__eventsimmerbluebirdwhatwglazyes2017walkinglibphonenumbercircularxtermpropertiestypeerrorprocessdomexecjapanesecolorRxJSmomentvaroptimizerformmobilesetzeroeslint-plugintouchendpointspecieregexpmakefunctionsJSON-SchemanamessetPrototypeOfpopmotiontostringtages-shim APItesterpushkinesisloggerobjectsanitize

Readme

@teamteanpm2024/sapiente-occaecati-dolor Version Badge

github actions coverage [![dependency status][5]][6] [![dev dependency status][7]][8] License Downloads

npm badge

Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on instanceof or mutable properties, and despite ES6 Symbol.toStringTag.

Example

var isTypedArray = require('@teamteanpm2024/sapiente-occaecati-dolor');
var assert = require('assert');

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

assert.ok(isTypedArray(new Int8Array()));
assert.ok(isTypedArray(new Uint8Array()));
assert.ok(isTypedArray(new Uint8ClampedArray()));
assert.ok(isTypedArray(new Int16Array()));
assert.ok(isTypedArray(new Uint16Array()));
assert.ok(isTypedArray(new Int32Array()));
assert.ok(isTypedArray(new Uint32Array()));
assert.ok(isTypedArray(new Float32Array()));
assert.ok(isTypedArray(new Float64Array()));
assert.ok(isTypedArray(new BigInt64Array()));
assert.ok(isTypedArray(new BigUint64Array()));

Tests

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