معرفی شرکت ها


array.prototype.concat-1.0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

ES spec-compliant `Array.prototype.concat` shim/polyfill/replacement that works as far down as ES3.
ویژگی مقدار
سیستم عامل -
نام فایل array.prototype.concat-1.0.3
نام array.prototype.concat
نسخه کتابخانه 1.0.3
نگهدارنده ['ljharb']
ایمیل نگهدارنده ['ljharb@gmail.com']
نویسنده Jordan Harband
ایمیل نویسنده ljharb@gmail.com
آدرس صفحه اصلی git+https://github.com/es-shims/Array.prototype.concat.git
آدرس اینترنتی https://github.com/es-shims/Array.prototype.concat#readme
مجوز MIT
# array.prototype.concat <sup>[![Version Badge][npm-version-svg]][package-url]</sup> [![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![dependency status][deps-svg]][deps-url] [![dev dependency status][dev-deps-svg]][dev-deps-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] [![npm badge][npm-badge-png]][package-url] An ES spec-compliant `Array.prototype.concat` shim/polyfill/replacement that works as far down as ES3. This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the [spec](https://tc39.es/ecma262/#sec-array.prototype.concat). Because `Array.prototype.concat` depends on a receiver (the “this” value), the main export takes the array to operate on as the first argument. ## Engines where this is needed Note: this list is not exhaustive. - Safari 10 - 13 - Chrome 48+ ([v8 bug](https://bugs.chromium.org/p/v8/issues/detail?id=10381)) - node 6+ ## Example ```js var concat = require('array.prototype.concat'); var assert = require('assert'); var a = [1, 1, 1]; assert.deepEqual(concat(a, 1, 2), [1, 1, 1, 1, 2]); assert.deepEqual(a, [1, 1, 1]); ``` ```js var concat = require('array.prototype.concat'); var assert = require('assert'); /* when Array#concat is not present */ delete Array.prototype.concat; var shimmed = concat.shim(); assert.equal(shimmed, concat.getPolyfill()); assert.equal(shimmed, Array.prototype.concat); assert.deepEqual([1, 2, 3].concat(1, 2, 3), concat([1, 2, 3], 1, 2, 3)); ``` ```js var concat = require('array.prototype.concat'); var assert = require('assert'); /* when Array#concat is present */ var shimmed = concat.shim(); assert.equal(shimmed, Array.prototype.concat); assert.deepEqual([1, 2, 3].concat(1, 2, 3), concat([1, 2, 3], 1, 2, 3)); ``` ## Tests Simply clone the repo, `npm install`, and run `npm test` [package-url]: https://npmjs.org/package/array.prototype.concat [npm-version-svg]: https://versionbadg.es/es-shims/Array.prototype.concat.svg [deps-svg]: https://david-dm.org/es-shims/Array.prototype.concat.svg [deps-url]: https://david-dm.org/es-shims/Array.prototype.concat [dev-deps-svg]: https://david-dm.org/es-shims/Array.prototype.concat/dev-status.svg [dev-deps-url]: https://david-dm.org/es-shims/Array.prototype.concat#info=devDependencies [npm-badge-png]: https://nodei.co/npm/array.prototype.concat.png?downloads=true&stars=true [license-image]: https://img.shields.io/npm/l/array.prototype.concat.svg [license-url]: LICENSE [downloads-image]: https://img.shields.io/npm/dm/array.prototype.concat.svg [downloads-url]: https://npm-stat.com/charts.html?package=array.prototype.concat [codecov-image]: https://codecov.io/gh/es-shims/Array.prototype.concat/branch/main/graphs/badge.svg [codecov-url]: https://app.codecov.io/gh/es-shims/Array.prototype.concat/ [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/Array.prototype.concat [actions-url]: https://github.com/es-shims/Array.prototype.concat/actions


نیازمندی

مقدار نام
^1.0.2 call-bind
^1.1.4 define-properties
^1.20.4 es-abstract
^1.1.3 get-intrinsic
^1.0.7 is-string


زبان مورد نیاز

مقدار نام
19.0.0 Npm


نحوه نصب


نصب پکیج tgz array.prototype.concat-1.0.3:

    npm install array.prototype.concat-1.0.3.tgz