1.0.0 • Published 14 days ago

@f1stnpm2/inventore-minima-aut v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
14 days ago

@f1stnpm2/inventore-minima-aut Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES2015 mostly-spec-compliant Reflect.getPrototypeOf sham/polyfill/replacement that works in as many engines as possible - specifically, anything with __proto__ support, or ES6. Built-in types will also work correctly in older engines.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

Example

var getPrototypeOf = require('@f1stnpm2/inventore-minima-aut');
var assert = require('assert');

assert.throws(() => getPrototypeOf(true));
assert.throws(() => getPrototypeOf(42));
assert.throws(() => getPrototypeOf(''));
assert.equal(getPrototypeOf(/a/g), RegExp.prototype);
assert.equal(getPrototypeOf(new Date()), Date.prototype);
assert.equal(getPrototypeOf(function () {}), Function.prototype);
assert.equal(getPrototypeOf([]), Array.prototype);
assert.equal(getPrototypeOf({}), Object.prototype);
var getPrototypeOf = require('@f1stnpm2/inventore-minima-aut');
var assert = require('assert');
/* when Reflect or Reflect.getPrototypeOf is not present */
if (typeof Reflect === 'object') { delete Reflect.getPrototypeOf; }
delete globalThis.Reflect;
var shimmed = getPrototypeOf.shim();
assert.equal(shimmed, getPrototypeOf.getPolyfill());

assert.throws(() => Reflect.getPrototypeOf(true));
assert.throws(() => Reflect.getPrototypeOf(42));
assert.throws(() => Reflect.getPrototypeOf(''));
assert.equal(Reflect.getPrototypeOf(/a/g), RegExp.prototype);
assert.equal(Reflect.getPrototypeOf(new Date()), Date.prototype);
assert.equal(Reflect.getPrototypeOf(function () {}), Function.prototype);
assert.equal(Reflect.getPrototypeOf([]), Array.prototype);
assert.equal(Reflect.getPrototypeOf({}), Object.prototype);
var getPrototypeOf = require('@f1stnpm2/inventore-minima-aut');
var assert = require('assert');
/* when Reflect.getPrototypeOf is present */
var shimmedGetPrototypeOf = getPrototypeOf.shim();
assert.equal(shimmedGetPrototypeOf, Reflect.getPrototypeOf);
assert.equal(Reflect.getPrototypeOf([]), Array.prototype);

Tests

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

openerconcathttpsexpressionstableserializationWebSocketsObject.valuesjoicallbindSetwaitdomprotocol-buffersrmdirsigtermcolorsflattenfast-clonerequestpropertycolourstringifierflagRegExp#flagsthroatless compilertaskcacheboundmonorepofileanimationjson-schema-validatorexitimporthookswritesyntaxreactpicomatchvisualtakeformsinputtrimRightrapidzodduplexes2016loggerinferencebrowserslistramdasafeshrinkwrapregexreduxresolvestatusoptimistloadingcurriedlimitairbnbfromlesscssshimjsonpathforEachescapeencryptionserializescheme-validationpoint-freeWebSocketbuffercryptofastclonecallassignes2015eslintconfigtoobjectwalkingmkdircommanderoffsetviewfast-deep-copyisConcatSpreadableObject.definePropertyinspectCSStypaniondragless mixinsvalidationspecfantasy-landeventEmitterrm -rfwordwrapwatchingtextutilitiesprivateformatajvdatebabel-coremakeES2017redactreducercollection.es6ReactiveXconfigurableperformanceweaksetwatcherjwtrm -frunicodeloggingletdeepclonebootstrap lesses8findupInt32ArrayerrorhandlersFloat64Arrayes-shim APIpromisesfunctiontap_.extendSymbolspinnerratelimitinstallwgetqueueMicrotaskvalidatorchromexssassertioncoreECMAScript 2015asciiobjecttypeofapiStyleSheetdayjsruntimepostcssdeep-cloneio-tscompilerjasmineremovetestmimetypeserror-handlingtsstylesheetspringenumerablepyyamlmomentgetOwnPropertyDescriptorStreames7hookformnpmsyntaxerrores6ES3iteratel10nrfc4122$.extendcommand-linetslibpathieshellopensdataViewoptionmixinsspawnmiddlewareincludesconcatMapsymbolrequireutilsInt8Arraynumberproperties[[Prototype]]PushfigletIteratorWeakSetnegativecmdreducewritablethreea11yRFC-6455find-updeterministicsetReactiveExtensionsArray.prototype.flatMapcharacterprettytddES5Array.prototype.flattenYAMLtoolkiteventsrgblistenerstoArraycollectionless.jscreatequeuecomputed-typesjsdiffenderdeeppackage.jsonexpressutilitytypedkeysECMAScript 2023querystarter256make dirguidautoprefixerpackageslinkpackage managerminimalECMAScript 2022es2017dom-testing-librarysideInt16Arraybootstrap cssapolloclassnameHyBisanitizeUnderscoreextrajapaneseclassescall-boundlastgettraversewrapstyleguide0ArrayBufferreuserandomgesturessharedarraybufferObject.getPrototypeOfchildUint8ArraywebfullURLECMAScript 2016typesworkspace:*environmentURLSearchParamscolumnfast-copytypedependency managerefficientaccessorMapdataviewcomparecss-in-jstoSortedfile systemvestgraphqllazy
1.0.0

14 days ago