Skip to content

Commit e3c2cbb

Browse files
committed
Merge remote-tracking branch 'origin/release/2.0.0'
2 parents 97431b5 + 49ddf08 commit e3c2cbb

File tree

1,462 files changed

+7571
-1504490
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,462 files changed

+7571
-1504490
lines changed

.babelrc

Lines changed: 0 additions & 26 deletions
This file was deleted.

.editorconfig

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
; http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.{js}]
12+
indent_style = space
13+
indent_size = 4
14+
15+
[package.json]
16+
indent_size = 2
17+
18+
[*.md]
19+
indent_size = 4
20+
21+
[node_modules/**.js]
22+
codepaint = false

.esdoc.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"source": "./src",
2+
"source": "./ts_temp",
33
"destination": "docs/",
44
"excludes": [
55
"node_modules",
@@ -21,6 +21,10 @@
2121
{
2222
"from": "\\.js$",
2323
"to": ""
24+
},
25+
{
26+
"from": "^ts_temp/",
27+
"to": ""
2428
}
2529
]
2630
}

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
node_modules
22
build
3+
/docs
4+
ts_temp
35
coverage
4-
.DS_Store
6+
.DS_Store
7+
.idea/
8+
.vscode/

.prettierrc.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"parser": "typescript",
3+
"singleQuote": true,
4+
"trailingComma": "es5",
5+
"proseWrap": "never",
6+
"arrowParens": "always",
7+
"printWidth": 120,
8+
"tabWidth": 4
9+
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## [Unreleased]
2+
+ add typings
3+
+ move docs to branch gh-pages
4+
+ add memoize functions
5+
+ add is/shallowEqual
6+
+ upgrade to babel@7
7+
+ fix bug with `omit` string conversion
8+
+ remove is/not
9+
+ remove is/contains
10+
+ remove sanitize
11+
+ fix function/throttleEnd
12+
+ fix array/shuffle random generator
13+
114
## 1.0.2
215
+ Update docs and license
316

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,19 @@ $ npm run benchmark
5252
| object/path | 12,023,128 ops/sec | 8,894,639 ops/sec | 7,587,076 ops/sec |
5353
| string/trim | 4,215,928 ops/sec | 1,034,655 ops/sec | 6,029,794 ops/sec |
5454

55+
## Browser support
56+
57+
- Chrome >= 40
58+
- Firefox >= 52
59+
- Edge >= 14
60+
- IE >= 11
61+
- Safari >= 10
62+
- iOS >= 10
63+
- Android >= 4.4
64+
65+
## Node support
66+
- 6.4.0 and higher
67+
5568
## Bundle size
5669
| Library | Bundle size |
5770
| --- | --- |

babel.config.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module.exports = {
2+
presets: [
3+
[
4+
'@babel/preset-env',
5+
{
6+
loose: true,
7+
modules: false,
8+
targets: {
9+
chrome: 28,
10+
safari: 6,
11+
firefox: 28,
12+
opera: 32,
13+
ie: 11,
14+
},
15+
},
16+
],
17+
'@babel/preset-react',
18+
],
19+
plugins: [
20+
'@babel/plugin-proposal-object-rest-spread',
21+
'babel-plugin-transform-es2015-modules-simple-commonjs',
22+
],
23+
};

0 commit comments

Comments
 (0)