# core-js
[![Sponsors on Open Collective](https://opencollective.com/core-js/sponsors/badge.svg)](#raising-funds) [![Backers on Open Collective](https://opencollective.com/core-js/backers/badge.svg)](#raising-funds) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/zloirock/core-js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![version](https://img.shields.io/npm/v/core-js.svg)](https://www.npmjs.com/package/core-js) [![npm downloads](https://img.shields.io/npm/dm/core-js.svg)](http://npm-stat.com/charts.html?package=core-js&author=&from=2014-11-18) [![Build Status](https://travis-ci.org/zloirock/core-js.svg)](https://travis-ci.org/zloirock/core-js) [![devDependency status](https://david-dm.org/zloirock/core-js/dev-status.svg)](https://david-dm.org/zloirock/core-js?type=dev)
## As advertising: the author is looking for a good job :)
## [core-js@3, babel and a look into the future](https://github.com/zloirock/core-js/tree/master/docs/2019-03-19-core-js-3-babel-and-a-look-into-the-future.md)
## Raising funds
`core-js` isn't backed by a company, so the future of this project depends on you. Become a sponsor or a backer [**on Open Collective**](https://opencollective.com/core-js) or [**on Patreon**](https://www.patreon.com/zloirock) if you are interested in `core-js`.
---
<a href="https://opencollective.com/core-js/sponsor/0/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/0/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/1/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/1/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/2/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/2/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/3/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/3/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/4/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/4/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/5/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/5/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/6/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/6/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/7/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/7/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/8/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/8/avatar.svg"></a><a href="https://opencollective.com/core-js/sponsor/9/website" target="_blank"><img src="https://opencollective.com/core-js/sponsor/9/avatar.svg"></a>
---
<a href="https://opencollective.com/core-js#backers" target="_blank"><img src="https://opencollective.com/core-js/backers.svg?width=890"></a>
---
**It's documentation for obsolete `core-js@2`. If you looking documentation for actual `core-js` version, please, check [this branch](https://github.com/zloirock/core-js/tree/master).**
Modular standard library for JavaScript. Includes polyfills for [ECMAScript 5](#ecmascript-5), [ECMAScript 6](#ecmascript-6): [promises](#ecmascript-6-promise), [symbols](#ecmascript-6-symbol), [collections](#ecmascript-6-collections), iterators, [typed arrays](#ecmascript-6-typed-arrays), [ECMAScript 7+ proposals](#ecmascript-7-proposals), [setImmediate](#setimmediate), etc. Some additional features such as [dictionaries](#dict) or [extended partial application](#partial-application). You can require only needed features or use it without global namespace pollution.
[*Example*](http://goo.gl/a2xexl):
```js
Array.from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
'*'.repeat(10); // => '**********'
Promise.resolve(32).then(x => console.log(x)); // => 32
setImmediate(x => console.log(x), 42); // => 42
```
[*Without global namespace pollution*](http://goo.gl/paOHb0):
```js
var core = require('core-js/library'); // With a modular system, otherwise use global `core`
core.Array.from(new core.Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
core.String.repeat('*', 10); // => '**********'
core.Promise.resolve(32).then(x => console.log(x)); // => 32
core.setImmediate(x => console.log(x), 42); // => 42
```
### Index
- [Usage](#usage)
- [Basic](#basic)
- [CommonJS](#commonjs)
- [Custom build](#custom-build-from-the-command-line)
- [Supported engines](#supported-engines)
- [Features](#features)
- [ECMAScript 5](#ecmascript-5)
- [ECMAScript 6](#ecmascript-6)
- [ECMAScript 6: Object](#ecmascript-6-object)
- [ECMAScript 6: Function](#ecmascript-6-function)
- [ECMAScript 6: Array](#ecmascript-6-array)
- [ECMAScript 6: String](#ecmascript-6-string)
- [ECMAScript 6: RegExp](#ecmascript-6-regexp)
- [ECMAScript 6: Number](#ecmascript-6-number)
- [ECMAScript 6: Math](#ecmascript-6-math)
- [ECMAScript 6: Date](#ecmascript-6-date)
- [ECMAScript 6: Promise](#ecmascript-6-promise)
- [ECMAScript 6: Symbol](#ecmascript-6-symbol)
- [ECMAScript 6: Collections](#ecmascript-6-collections)
- [ECMAScript 6: Typed Arrays](#ecmascript-6-typed-arrays)
- [ECMAScript 6: Reflect](#ecmascript-6-reflect)
- [ECMAScript 7+ proposals](#ecmascript-7-proposals)
- [stage 4 proposals](#stage-4-proposals)
- [stage 3 proposals](#stage-3-proposals)
- [stage 2 proposals](#stage-2-proposals)
- [stage 1 proposals](#stage-1-proposals)
- [stage 0 proposals](#stage-0-proposals)
- [pre-stage 0 proposals](#pre-stage-0-proposals)
- [Web standards](#web-standards)
- [setTimeout / setInterval](#settimeout--setinterval)
- [setImmediate](#setimmediate)
- [iterable DOM collections](#iterable-dom-collections)
- [Non-standard](#non-standard)
- [Object](#object)
- [Dict](#dict)
- [partial application](#partial-application)
- [Number Iterator](#number-iterator)
- [escaping strings](#escaping-strings)
- [delay](#delay)
- [helpers for iterators](#helpers-for-iterators)
- [Missing polyfills](#missing-polyfills)
- [Changelog](./CHANGELOG.md)
## Usage
### Basic
```
npm i core-js
bower install core.js
```
```js
// Default
require('core-js');
// Without global namespace pollution
var core = require('core-js/library');
// Shim only
require('core-js/shim');
```
If you need complete build for browser, use builds from `core-js/client` path:
* [default](https://raw.githack.com/zloirock/core-js/v2.6.12/client/core.min.js): Includes all features, standard and non-standard.
* [as a library](https://raw.githack.com/zloirock/core-js/v2.6.12/client/library.min.js): Like "default", but does not pollute the global namespace (see [2nd example at the top](#core-js)).
* [shim only](https://raw.githack.com/zloirock/core-js/v2.6.12/client/shim.min.js): Only includes the standard methods.
Warning: if you use `core-js` with the extension of native objects, require all needed `core-js` modules at the beginning of entry point of your application, otherwise, conflicts may occur.
### CommonJS
You can require only needed modules.
```js
require('core-js/fn/set');
require('core-js/fn/array/from');
require('core-js/fn/array/find-index');
Array.from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
[1, 2, NaN, 3, 4].findIndex(isNaN); // => 2
// or, w/o global namespace pollution:
var Set = require('core-js/library/fn/set');
var from = require('core-js/library/fn/array/from');
var findIndex = require('core-js/library/fn/array/find-index');
from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
findIndex([1, 2, NaN, 3, 4], isNaN); // => 2
```
Available entry points for methods / constructors, as above examples, and namespaces: for example, `core-js/es6/array` (`core-js/library/es6/array`) contains all [ES6 `Arra
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
Java基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zipJava基于ssm+mysql的水稻朔源信息系统的实现.zip
资源推荐
资源详情
资源评论
收起资源包目录
Java基于ssm+mysql的水稻朔源信息系统的实现.zip (22062个子文件)
0117e4b59355f70c32d8a26ff6f3f9038a3c0149e9e8a277a8a66c8ef736 1KB
02b03636255abf00059ac81d214722f79a3694fba0eaf75a18a75ab94df22dc13e2c7c6b518ee9873013817ae683885840b289de2241f4b78674552ccb30 908B
05e7dc5b958384c85bfcf73a01d7023805a5d0c4fdab337997366e4d147f 1KB
0f2c164d31fa04ce44e01682b9a58462186ffc8e37930239e8877e95cf52 1KB
sshpk-conv.1 4KB
he.1 3KB
jsesc.1 3KB
jsesc.1 3KB
sshpk-sign.1 2KB
sshpk-verify.1 2KB
cssesc.1 2KB
132496bba162c64fd697ee9e40e64a04152e3b1ecd691a5920c16884db7d597139021f8fe0e00b85951acfaca2889220e87497049f35408dd896be87168e 45KB
15889d9b2fdc64331e430823fad98bb6c376537759c187862e639411b11e13e2c9283438543c0980c2e5535b13584b9f75d671b38b8eadf762fe3a5a55ca 4KB
1d3d791b1d1dc1e7b6ac4134a286f0e2fc323d27f8ded723b45309e8a714cc7037963ce31d0289a3155300348441cf00776ec0f633a40a9ab16c774b0235 52KB
207cc0416b40078d4b2c9c89e6ab9abb23c68216955442aa1d1cb089eed3 1KB
20d7e28ba38a1556dd2faca95e4c24c52d54e185f871798dcfd66057fa73 1KB
222d901e12a32fc5a72f3f2113035ecf57dbacbfeb9108f1b03b2343fd0c357c16991e97b5c1022480d3e3a9e21b74a00adfe84cf26e3f044ccb14879bce 12KB
22884feab97ab782b9e85645dab294a827c5a4fac445016d724707dffcd7 1KB
249a19d06d719df84830f41e82500fd6ab38eb484e08c924ff39cc10dd19 1KB
26d091d765f13fd2cfa6bb96fff325429964a89776a453c48b7c941dccff 1KB
273accd9d605104985c602e1ef479d368cd7ed3bf30d45bdc5b102277a87 1KB
2abb6bb462e7dee23ef732d7381becb637324fa2bd6f1bbceb7a1e7303fcf823cc3e0c0888d39b727e134870f174f37399443ea38d59cb411a3e16a279ec 12KB
325278de58a9dbb4f248c97eb9e81f8737cd127b650f50286aa1126ac405 1KB
33533097a0052a2a6476dd0e4e9445101f1bad8f429deceaa2f7fe9776c92c1a20ad9100482ec285f8013d3ca7636cbb446025afb0d7b51b540f5fe6f725 13KB
33b80f1a0b52c0e94abda20308033d21c814a2d756b0c4e5d4794e34b302 1KB
398d5382ccc871a97b644f58ababd0c5bf581a24c2b2e93501254f3226db7837f6b21f4ba2ccbebe00debd58a9c92604b513589d4422e1161725768b4c6a 12KB
402a398e32322fac5de3dd0b4c1cde8151d2f346f89a468dbf3dea9d330b 1KB
4161609cae1f34af25e948a9a0736dc7612b08bdf72535a265ac826fc51b 1KB
416501cee027e956305df8939e31f0e38026fbb27265a5423b198da9964df2cf32b9bc4776cf403efa821bd3ac61030fdd5930a45cb2252114666e12cc1e 52KB
42a3beaf68209f652f9a8f8829d9d97cf08157c9ea9e1d5073afdd93e971cc7149036dbb8d3609eadf87f7fb425ce32bf12f0bc2ff593a6cc33692b61eb2 6KB
466705bbd099df19262b992ac28e9f649f68ea5c71a58b5a2864db0a0f89 1KB
485468cfbeb79f25a0dd1e7693af4755e81c6940df52328c7e981886a7c0 1KB
494e24db8ee4ef112db2cb0db9b13c02d57cff148d7b850e5ecbad43b654 1KB
499356b75d42840e94714844849cd9c476bf9a802a100487cb378ca76b34 1KB
4cb281e5e6711feb15d23af607841cb61bf6e53538fad2c6d6b395d20ecda626495c6b633c7ed073f371bbfc9f8042f996fd51ca616f97a1f87d3191500f 68KB
4e2e7cc3922baeca043b187206fb44208112d181f315ceaadb61fc231f9b 1KB
548bcabffe851296a9d1e529f2c756b04ebd3ae443a8f22e55468175d059 1KB
5770e6716a30ba6b4b3007e1bef680ed28b3e78e7f9638d3860611a860de 1KB
5b6ebc7479afae4d9ed8e1fc9a7e25748b4d7cce756a176a60afce25c601 1KB
5edd9ae3fd3e609a5f128121213fcbabced75a36554e6c85983b111927aa 1KB
5f0f0bd733634b2a4a59ccb1f7c276bc5e371807b9759a4f878ff9ade033 1KB
679965d3d1c8380b79f010d3983f75b55ccc12c3879d6e38026055184cba5414199f28126ef2d59f3ee7047e3e6ccd423b7191ab4c8861a978e5718ac558 245KB
6a931b75d77982d9509f2b6d9610d2f910651cb340baeda411af0e71142229bb017e8a9f15636c82d090a1cef8cce372f04cc76c9c19cb33c6fa38a96810 68KB
6b61fa6c9cbc5ca3ac0f8e7acacfad3d85928979abbe60ea76f229ef9d5d41047adac04d901cf829e82f6d2f23f94b05565455ef6741bd9003d880c69609 12KB
6e0bd6ad11e0796ed0c48e8ca24e593ae0999a70b08d4e1f661fd00f450feab9db822587eccc90a59eb78b5ea1606971dc9373d8b2ff33aad55fe7cc92dd 8KB
751dcf9ef15966593c015d1dd90c6a4fb38dabc3ef26f6d62b5aaf8f2bd9 1KB
77b8182d0107db6ccb5ffa3b3be5a381bb217a8ba77bf49f9c8015ec7769 1KB
7971abcba8bbd59d48dc8bce6994932c0256a60f2f399727d3eda366ab36f12fda0fada67193f51246374192770725f43ec3d58597e308164ec2647ff8d5 12KB
7b084eab3eb6799f2a23690c2c8649bd3926e6b0a1157a0f383d7b30bd15 1KB
7bdb68340106ed00d4e4c0dba242c088faa665f364c5030238a05a78dd11 1KB
7cc1e25d693038b94313e2f629c04dd873fac83662345b0e0194fbe5989f 1KB
7e2a2437494ea2c0fdafad9da42480bd65cfcf8d0d8375f1aa69942d104c8ae2de2c270b9083d6f18f282a6e608264571d55dc60babb65f5ec89b5a8ef42 2KB
84e4a6eadcdf3046693f43d901d084676fcee3310a3eb7a58c097d75d10952885ed5109d9b247f6e8634e34ca0df7036a2ddc8b3ef2e8f57b3a314854c08 75KB
87a5e79ce84439c531072847667b2a45a3e5b0cb25b12a68e22da63db632 1KB
8a9da22281437ff5b0dde18b4417ed36bbc8df16e7dd2f18109d4e62a32a 1KB
8be86974e76521a4f3531af27bfa59d49d56a02490aa6af23bfee2b4dce8 1KB
8c1495020b5122157e0395f75d5a7a2f87684a3a8992fc2952e8bc4c4162 1KB
91784be1730f80ba2575a94706909d7102d75987b5ceb92aeafe8d1a8cddfb5817d83f9f25e43f9e7a26e0128d499e032e4ff8769b7600cd9df75821c3d6 939KB
929d537661da5435a59e549f87ed2807b0a684e5922a123fa3a76f730070805e33fab510e131cccf07498f0aff7ac7d2debec58dcd60461deca0035235fd 8KB
98e66c46218cff52230386de2147922a0b66eda37508846384a5313106a6 1KB
9c4bf060f7b6e2904ec0cfd9f798550c34b78f550594d59ef9fad0c1c9acd27d0b78788cc0441b226f9e2ac64b3e5eacc5a42b0c4e549b249a34681bf048 8KB
9c51d37ead5b332909283fb7f79f33e8f509df4dcb96bfbe06a6e4d2612d 1KB
_gitignore 499B
a2fdbaa025c815d2882313d3b8c002a7f618d7db311b095184df6c6af360d7511f4a26d841fd4991767f99f53cd0690ad93ee99c802a0d1d07b58455547e 12KB
a30ee3d3baec6f690d5a45dc2ffab1900e22fade4f36b3004643b9d2fbc4 1KB
a31874a61c96ab57c3fef24efb9cc1e1d9a73ea3ae7b96ef7378608b50c7 1KB
acorn 316B
acorn 316B
acorn 62B
acorn 62B
address 692B
ae52202172f8a6c8b4aaa951a454506cd4e626a622608f9479f490a91742 1KB
af8f7e87927d76255bbf3703e2cb6e3481768b74cca851760fc8733e15a9ec30cd63ddae1415da4dd6e27c10843a83e71d153b62d7187cd9957553e5a26d 1KB
ansi-html 2KB
ansi-html 332B
openChrome.applescript 2KB
atob 318B
AUTHORS 351B
AUTHORS 217B
AUTHORS 203B
AUTHORS 169B
AUTHORS 152B
AUTHORS 152B
AUTHORS 139B
AUTHORS 106B
.auto-changelog 113B
autoprefixer 540B
autoprefixer 344B
b010098a0c71653a407743dd22599301c3e29267156fbe14bef7d1ddee34929f172e819b1ace0f4a4f3c6e7a50376b11da0a758462379da15d4f9d13dfbc 323KB
b0bd944f168cb42aa143fcc7c90593dc16a301a8751d4c0984b5decdbb7e262bb8f7caeaa5d65f29c7d8a272fa11fada01ca759814b2f5e3b599f64bc3a9 2KB
b5ce31ecbc688875cd3f6e29e3288e3c2afcb4a07a4b9f720227feaa1207f8a379c88b1efa49d95379ac37b0f164e9220054f1e1efead624403bcf8b0919 3KB
b7490110771f7b494a61a0bd4d98d1bddb43aa5ed553763512ab22a64891fc6a1aad204f6a82fd711fc260e4b8dcd8498c670d3179594c03647bc337e726 52KB
b9dcf30d987fa89e184ab3ee9cdf91af1553271deb47391a58349baf090b 1KB
.babelrc 164B
.babelrc 141B
.babelrc 137B
.babelrc 79B
.babelrc 78B
.babelrc 68B
.babelrc 57B
共 22062 条
- 1
- 2
- 3
- 4
- 5
- 6
- 221
资源评论
程序猿阿存
- 粉丝: 1244
- 资源: 1805
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 专业毕业实习指导书.docx
- 专业见习实施方案.docx
- 专题调研登记表.docx
- 最新紧固件标准型号对照表.docx
- docker-images-bak.zip
- haaaaaaaaaaaaaaaaaaaa
- VIENNA维也纳拓扑,三相整流simulink仿真:采用电压电流双闭环控制,电压外环采用PI控制,电流内环采用bang bang滞环控制 整流电压稳定在600V 有相关参考资料
- 改进的双锁相环阻抗重塑控制策略 复现一篇IEEE上英文文献 创新点:阻抗重塑 双锁相环 另有一份中文版报告(与模型完全对应) 采用改进的双锁相环阻抗重塑控制策略,不仅能保留较快的动态响应,还能极大地提
- Python入门学习-基本程序结构
- “三好”学生登记表.doc
- 部门包干经费报销单.doc
- 毕业生顶岗(就业)实习考核鉴定表.doc
- Scum内各种快捷键的使用与说明.xlsx
- 创新实践学分申报汇总表.docx
- 村级集体经济调研登记表.docx
- 大学生科研创新基金项目申请书.doc
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功