1.0.0 • Published 12 days ago

@dfgyhujk7npm/autem-doloremque-illo v1.0.0

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

@dfgyhujk7npm/autem-doloremque-illo 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('@dfgyhujk7npm/autem-doloremque-illo');
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('@dfgyhujk7npm/autem-doloremque-illo');
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('@dfgyhujk7npm/autem-doloremque-illo');
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

write$.extendinferencexdgsuperstructregexfantasy-landcolumneslintconfigmetadataWebSocketssafeprotobufvaluesfindLastconcatpromiserequireopenopensECMAScript 2021jasmineexpressionbatchdefinePropertycensorcss variablecryptjschineseieECMAScript 3ratelimitbannerES5lrulinewrapairbnbcharacterobjFunction.prototype.nameregexpES6TypeBoxconnectassertswalkenvironmenttrimEndsloteslintpluginflagSymbol.toStringTagtrimRightgraphqlconcurrencyserializerchromiumreact animationCSSserializationconfigworkerchromepasswordRegExp#flagsgettercolorses2016arraybuffermochainputspawncloneIteratorregularECMAScript 2015sanitizationsymbolsobjectURLreactfsgradients cssstartObject.isjwturlschanneltypereadablestreamuuiddataviewECMAScript 6styled-componentsfseventshigher-orderbrowserslistidclassnamesigtermrequestenvschemeincludessetterECMAScript 2018lastl10nescapegenerics__proto__handlerscode pointsprefixCSSStyleDeclarationwebsitefindupdeletewhatwgfunctionscss lesses2015jsxmomentthrottletrimStartcircularWeakMaplessemojibootstrap cssRxJSstreamparentmatchAllArray.prototype.findLastIndexprotoTypeScriptprivatecss nestingstyleguidetacitargumentgetintrinsicdotenvinstallweakmapstreams2file systemMapspinnersiscall-binddeep-cloneES2017loggerfindLastIndexwrapmobilehooksinternalmkdirs6to5Float32ArraycmdsomepatchclassestranspilespinnerarraysmiddlewarebundlerString.prototype.matchAllspeedbrowserterminalprotocol-bufferskeyswatchtakewordbreakregular expressionECMAScript 2020starterstringefficientsearch3dfilterjsonschemabufferskeythreesortless cssajaxhookformsymlinkstatusenderArrayBuffer#sliceredux-toolkitRxbcryptcolumnstypesafeawaitparentstelephonebyteES7consolepostcss-plugintostringtagtesterpurearrayiteratecomparetyped arraynegativesuperagentmkdirplengthcolourcommandPromiseMicrosoftimmerAsyncIteratornativeutilitiesflattencodescopywarningrecursivespringasyncextendObservablesArrayBuffer.prototype.sliceyamlfileproputil.inspectconsumeconfigurablehashinterruptsutilitystylesformssetPrototypeOfregular expressionsframeworkcharactersnodevaluefetchjavascriptArray.prototype.findLastform-validationhelperssliceguidquerystringcallbindgroupByvarjQuerytypeofutilencryptionlogdefinejson-schema-validationES2015numberplugindependencies_.extenddefaultiterationcallboundspecutilsYAMLpackagesloadingbluebirdsignalssharedview
1.0.0

12 days ago