-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
56 lines (39 loc) · 1.76 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
'use strict';
exports = module.exports = {};
// let and const: https://github.com/roppa/You-Dont-Know-JS/blob/master/es6%20&%20beyond/ch2.md
exports.variables = require('./modules/variables');
// Classes: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
exports.classes = require('./modules/classes');
// Arrow functions: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions
exports.arrows = require('./modules/arrow-functions');
// Objects
exports.objects = require('./modules/object');
// Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
exports.promise = require('./modules/promise');
//Strings - additions to the string object
exports.strings = require('./modules/strings');
//Params - additions to the string object
exports.params = require('./modules/params');
///////////////////////////////////////////////////////////////
// Symbol
///////////////////////////////////////////////////////////////
exports.symbol = require('./modules/symbol');
///////////////////////////////////////////////////////////////
// Reflect
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
// Proxy
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
// Exports
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
// Arrays
///////////////////////////////////////////////////////////////
// Array.from()
// Array.of()
// Array.prototype.fill()
// Array.prototype.find()
// Array.prototype.entries()
// Array.prototype.keys()
// Array.prototype.copyWithin()