We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5d2d6 commit 810520bCopy full SHA for 810520b
README.md
@@ -6,13 +6,13 @@ See [docs](https://aureooms.github.io/js-mapping).
6
Parent is [@aureooms/js-library](https://github.com/aureooms/js-library).
7
8
```js
9
-> import { fromkeys , reflect , object } from '@aureooms/js-mapping' ;
+> import { fromKeys , reflect } from '@aureooms/js-mapping' ;
10
> import { enumerate } from '@aureooms/js-itertools' ;
11
-> fromkeys( 'ab' , 1 )
+> fromKeys( 'ab' , 1 )
12
[['a', 1], ['b', 1]]
13
> reflect(enumerate('ab'))
14
[['a', 0], ['b', 1]]
15
-> object(reflect(enumerate('ab')))
+> Object.fromEntries(reflect(enumerate('ab')))
16
{ 'a': 0, 'b': 1 }
17
```
18
0 commit comments