1.0.0 • Published 2 months ago

@skylernpm/quo-alias-nam v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@skylernpm/quo-alias-nam Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES5 mostly-spec-compliant Object.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('@skylernpm/quo-alias-nam');
var assert = require('assert');

assert.equal(getPrototypeOf(true), Boolean.prototype);
assert.equal(getPrototypeOf(42), Number.prototype);
assert.equal(getPrototypeOf(''), String.prototype);
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('@skylernpm/quo-alias-nam');
var assert = require('assert');
/* when Object.getPrototypeOf is not present */
delete Object.getPrototypeOf;
var shimmed = getPrototypeOf.shim();
assert.equal(shimmed, getPrototypeOf.getPolyfill());

assert.equal(Object.getPrototypeOf(true), Boolean.prototype);
assert.equal(Object.getPrototypeOf(42), Number.prototype);
assert.equal(Object.getPrototypeOf(''), String.prototype);
assert.equal(Object.getPrototypeOf(/a/g), RegExp.prototype);
assert.equal(Object.getPrototypeOf(new Date()), Date.prototype);
assert.equal(Object.getPrototypeOf(function () {}), Function.prototype);
assert.equal(Object.getPrototypeOf([]), Array.prototype);
assert.equal(Object.getPrototypeOf({}), Object.prototype);
var getPrototypeOf = require('@skylernpm/quo-alias-nam');
var assert = require('assert');
/* when Object.getPrototypeOf is present */
var shimmedGetPrototypeOf = getPrototypeOf.shim();
assert.equal(shimmedGetPrototypeOf, Object.getPrototypeOf);
assert.equal(Object.getPrototypeOf([]), Array.prototype);

Tests

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

getoptbluebirdvaluebufferskarmautilsinatradeepcopydiffmoveObjectconcatMapdefinePropertyconsolecss-in-jsregexextendlesstestmacosprototypemetadatacollectionArray.prototype.findLastIndexroutingtrimStartwatchimmutable@@toStringTagES2021globdayjsamazontaphookformfastcopyefficientidcloudformationURLconfigurableSetbusyES2022BigInt64ArraygroupByarraybufferfindupWebSocketrdsreducecopyequalityRegExp.prototype.flagsECMAScript 2018namesweakmapinoutputindicatorfile systemarktypeutilityparentsprotobufReactiveXstatefastclonemiddlewareworkerless mixinspropertiesreact-hook-formsimpledb.envwhatwggdprObject.valueses7zodjsdiffmatchAllstylemobilepromisesrgbendpointreadablestreamlimitparsingfilevariableseslintplugintypedfastcomparei18nECMAScript 2020reduxcacheinterruptsconnectserializergetdeep-copyiterationlintdeep-clonelinkflattrimRightelmsharedarraybufferFloat32Arraychairedux-toolkitwaitutilitiesastcontainsinferencerm -rfformprefixparselookwatchFileWebSocketslook-upArray.prototype.flaturlelasticacheec2wordwrapECMAScript 2016queueMicrotaskpromiseschemaairbnbES8typeratefsTypeScriptopentakeuninstalldescriptorsTypedArrayform-validationfast-clonecloudfrontString.prototype.trimstringifyObject.entriesemitvalidationpreprocessorPromiseobjreplayconfigprocessbeanstalkdataviewebstypeerrordotenvObject.assignqscolourmixinsmkdirpisConcatSpreadableReactiveExtensionsECMAScript 3circularequalES2019dropexitmrupositivecodesrmcall-bindtslibeslintconfigstdliboptimizertapesafees2018warningwidthUnderscore0es-shim APIECMAScript 5runtimegradients css3matchesformathashconcurrencyECMAScript 2017kinesisreal-timepostcss-pluginwalkingtypesafeweaksetECMAScript 2023momentcompilercompile lessdataViewSymbolsortjsonpathnpmjesttypedarraysawaitl10nautoprefixertoolsMapreact-testing-librarycurlconcatRxJSforEachFunction.prototype.namebootstrap csstestingwhich
1.0.0

2 months ago