# 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
没有合适的资源?快使用搜索试试~ 我知道了~
基于springboot+vue的街球社区网站(源码+部署说明+系统介绍+数据库).zip
共27383个文件
js:15672个
ts:1975个
json:1940个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 112 浏览量
2023-06-09
06:05:22
上传
评论
收藏 96.16MB ZIP 举报
温馨提示
基于SpringBoot+Vue的街球社区网站是一款基于Web开发的在线街球交流平台。该系统使用SpringBoot作为后端框架,Vue作为前端框架,实现了用户登录、论坛管理、帖子发布等功能。 该系统的数据库采用MySQL,包含五个表:用户表、论坛版块表、帖子表、管理员表和角色表。用户表存储用户的基本信息,包括用户名、密码、联系方式等;论坛版块表存储论坛版块的基本信息,包括版块名称、版块描述等;帖子表存储帖子的基本信息,包括标题、内容、发布时间等;管理员表存储管理员的基本信息,包括管理员姓名、联系方式等;角色表存储不同角色的用户权限,包括管理员、普通用户等。 在系统实现中,用户可以通过登录页面进行注册或登录操作,管理员可以对论坛版块和帖子进行管理,包括添加、删除、修改等操作。用户可以根据自己的需求选择合适的版块和帖子进行浏览和讨论,并发表自己的观点和问题。系统支持多种支付方式,包括支付宝、微信支付等。 该系统具有良好的用户体验和易用性,同时具有较高的安全性和稳定性。通过该系统,用户可以方便地进行街球交流和管理,提高了学习效率和交流质量。
资源推荐
资源详情
资源评论
收起资源包目录
基于springboot+vue的街球社区网站(源码+部署说明+系统介绍+数据库).zip (27383个子文件)
002083e5aab6bf58ed8d392687872810824430 100KB
0083569ce3a7220c2ce219253fd46e2103a533 1KB
00a39591f5e6c0a05a7945ac245eddbaa907e2 253B
013b92a0ed287833e7c12c4e266ada3b66f724 491B
01aed97b02eb57bc690f562e8a91a2097630227e47120ce6ea87f605debb47ce7456dc86f9ca56b52784bb339a67eaed89787869cdbd7b7c56f361300957 73KB
026a6c85c5f0901af888bc8c8b64ad51d39951 3KB
0367998fec2ff269df68a152d12e93c09d9d36 261B
04bb1aa5d7aa2c3d75aedd4a03916afaa7e4d9 144B
05df65775138f6a078b28e69f028cf29ff7388 202KB
05e66818cff53deaf6a02a537e71b827a7626e 1KB
070bc59634213b5f9d49b4d6169d61dd6ac40d 325B
0c0d4f33cc0ccc689f28784836122d404303d6 77KB
0cc2dc964496ea18f6a3530460bcf58eac8a50 9KB
sshpk-conv.1 4KB
he.1 3KB
jsesc.1 3KB
jsesc.1 3KB
sshpk-sign.1 2KB
sshpk-verify.1 2KB
cssesc.1 2KB
1065ab6f4dba326cd6289f874dfcb5a93c0737 78B
10c6a45035b6573151ff6196e4bdea78deb75d 53B
10d1a3f2d14016480aec74af3b00b22b840511 68KB
1136790a48a33a2622627e4267425a2ec90b61 557B
13555d424484095f083982166d00f3131d8a5d 3KB
14876f629ffa1ee9ccefc53b3a973f30382700 188B
1577313e2f077e36365c5c7bb302ae976825d1 104KB
15c2a8bc835aef69053600ed2c71de7f20215d 372B
172c2f6ed2f683fe898bdc4291b323ef563312 13KB
17519c05cda513445a596954efc33aa6535570 396B
185626698393b1365199f93aadd8d3350dc9d5 140B
18b2f3f36483973876a382d6e1bdc1f346361a 208B
19b427345e62e89ba45ffdb0c71aa692069566 179B
1b2da7be5ad86920d3c35aaf5f6d3d508a1055 230B
216ffd113168c95e4b7f1f3455d0d4833fa8c7 593B
220029ad180bf28266b90ad95445b0f57f610e 1KB
242714fc453d2cc0d1f7a5c1d9464e81f5a0ec 47KB
250844ff611e8faa31cf0cd5e7ec6cb6cc299d 194B
2522a94d82a571b84ac1de470bcb70b176023c 47B
2591bc5e32312505a4cee99d9dcd4289e44349 446B
262754ca2232018934ff3bd3adaf1a0e6eb8c7 119B
262beaa7063d3900ad8cf25741cabe7cf3898c 439B
26c30641e6dfce3b23d018edb30c7d044a7d1a 115B
26d4359a8f30eef0d0ca097a17994456343675 289B
26fde03538350e750a76cf2415a62f960976af 87B
27515379c4bd9979039bc0e86ca3626123b96b 479B
2a98af94e82f0a26b2a1f26e7b05afe07d3608 538B
2a9b2355298234a9a5e7b158e95617e7476968 165KB
2b8d1c5d86e4512af02aecb8e2100b63539af9 54KB
2d5975e70dbc0588a3440b8c0480cb07a951a1 4KB
2f6bf8490b04f36c9588303d7a7238482e6012 444B
2f847e17e08cebb04fb1f5a62d75213a9ad168 410B
309506903bea488037819734c641b657ef5c48 584B
345311d366c61e1ca4ead057df4d5c3ee871db 588B
34d940942172827aa8af63c760e5f29be92996 36KB
359b5e1390d5ae8b17afa0d0bbe31d9e4ad25f 1.2MB
35f3b87186bcddb53d98bd9e2a726ac6f62e2c 74KB
36fcfb72584e00488330b560ebcf34a41c64c2 979B
37b6b3a5e870702f412ceb9382f15b5f39c94a 243B
37d780aeec9be7cb3cabdf00c3efd6be5e2273 5KB
393ae1bfea76c15d305552cf1f177e2d902a2d 2KB
3aa62dd619bad73540ede3459a4db91d31c7a6 790B
3adbc1e527906a4aa59558cd582c20bcd1d738 160B
3c409b7a30c0ee2b1430039cef57b76ee17f09 5KB
3c8c8a2c5a851abb91bc52cc4d40298e170177 2KB
3db6da38327db2f481185c4051949985fff2cf 79B
40f96201364aadd4b9ca76a7506e35f405fa06 243B
41e1d888040ec44c4ea979f53a92575fc4edc7 1KB
4254a6831bddc65b5ad2864626d0d02a15f31b 153KB
4266e0d087794f655ecceb7a367859a1ac513a 644B
4439d2b45fd21205a9cc4880dc83501c63d5f3 249B
444d580e8debfd00bde9743681251b165ef65c 2KB
45f1c409c03209da7fa089c8f636e21d60864a 445B
4698a173d9dca3f1c545f19ccf721fd4591fe1 832B
47a4e9fa86d1468055d65fc88146e92bd073c7 209B
492ab0c5c5c64e803803d66aa3463e311e628a 2KB
49f696cb302d4bb58e26581c8f07931de7178c 2KB
4a5c1a65f71e0828a23752934a95e42e511236 390B
4ae98b45dd09e2ccf545a496e570ec3675ca73 2KB
4eb0cfc0f88cb70b7ea1aab134678b48bae06c 685B
5035a8be709efc92a8a34c1d935c6899335ca6 10KB
5066bf55dd2d56afad94f322968414775d1638 284B
519b3a4d2d2e0b0111faf5a18fc01deb262f26 818B
538404f4b3fa9642f7736c9d7607ca5904b5f8 10KB
550df3b49b5374b82c0266a00a9c6e416b6155 301B
558405fdcc02f12d757acb308e02937a7444f1 82B
5588491292b8d86e5c34205ec000b14f065b92 538B
56c3bfacf76d2ff6e7852cdc6ee4e8b3e1aa3d 122B
575b31c52c7b6a3e0c2d1299827f9e532f1c22 2KB
5770da404bb24ffb3311f6c259be15ccaf3e65 3KB
58ddc477ed884723ef0fc34948507b0efd60f4 1KB
5a13962197105f2078d2a224cc57dfa09b4893 383B
5a77e8d453369a224bd4abfb8493411e718aaf 453B
5a7eb4549ec1406985347113efa74287a2f219 157B
5bfbb195618c35453bec417ba9f55b1458d4fa 86KB
5cbc2b45aebf7cc23d72cf0058530c5772101e 1KB
5d01ff3a7762f980dc47b9b9864bbad5abe4f6 5KB
5d42e44a37743c2737a73b31ddccd3288b1b89 5KB
5d6ca8cf2fca3281952aa3f114bb278ef377bd 220B
5d9d7d4cc87d0b1f5ba3ae1aa3ec8998c0d87c 1.05MB
共 27383 条
- 1
- 2
- 3
- 4
- 5
- 6
- 274
资源评论
码农飞哥
- 粉丝: 14w+
- 资源: 1766
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 直流电压源+双向DCDC变器+负载+锂离子电池+控制系统,Simulink仿真模型 有两种工作模式: 1锂离子电池经双向D
- 基于Java和Python的bsin-server-waas设计源码
- 基于Python与JavaScript的四川农业数据抓取mofcom爬虫设计源码
- 基于Java的Spring Boot宾馆管理系统后端设计源码
- 光伏三相并网Simulink仿真模型(光伏并网仿真模型) 电路包括五个主要模块:PV光伏阵列+Boost DC DC 变器+三相
- 基于Java开发的baseFragment与baseActivity策划菜单设计源码
- 基于Java开发的母婴app后端设计源码,针对七岁以下儿童家庭
- 三相并网逆变器预测控制的simulink仿真 #三相逆变器 APF simulink仿真 价值函数为给定的电流与测得的电流作绝对
- 基于Java语言的MessageNotify告警审批系统设计源码
- 基于CSS、Java和JavaScript的Cosmetics_Mall小程序设计源码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功