Skip to content

Commit f98288c

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents 75be2c8 + e6d7b18 commit f98288c

File tree

794 files changed

+8688
-2207
lines changed

Some content is hidden

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

794 files changed

+8688
-2207
lines changed

docs/javascript_quirks.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
When implementing lower-level math functions which may require rounding, exercise caution when considering whether the built-in rounding behavior is appropriate and ensure that bias is not introduced in computed results.
2222

23-
2423
<section class="links">
2524

2625
[ecma-262-math-round]: http://www.ecma-international.org/ecma-262/6.0/#sec-math.round

docs/migration-guides/lodash/data/lodash_4_17_x.csv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ isArguments,assert/is-arguments
129129
isArray,assert/is-array
130130
isArrayBuffer,assert/is-arraybuffer
131131
isArrayLike,assert/is-array-like
132-
isArrayLikeObject,(planned)
132+
isArrayLikeObject,assert/is-array-like-object
133133
isBoolean,assert/is-boolean
134134
isBuffer,assert/is-buffer
135135
isDate,assert/is-date-object
@@ -138,7 +138,7 @@ isEmpty,assert/is-empty-object and assert/is-empty-array
138138
isEqual,(planned)
139139
isEqualWith,N/A
140140
isError,assert/is-error
141-
isFinite,(planned)
141+
isFinite,assert/is-finite
142142
isFunction,assert/is-function
143143
isInteger,assert/is-integer
144144
isLength,N/A
@@ -269,7 +269,7 @@ truncate,(planned)
269269
unescape,(planned)
270270
upperCase,string/uppercase
271271
upperFirst,(planned)
272-
words,(planned)
272+
words,nlp/tokenize
273273
attempt,utils/try-function
274274
bindAll,(maybe)
275275
cond,N/A

docs/style-guides/javascript/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,8 @@ Including parentheses around the test condition in ternary operators improves re
570570

571571
##### Bad Example
572572

573+
<!-- eslint-disable stdlib/ternary-condition-parentheses -->
574+
573575
```javascript
574576
// Do not...
575577
var foo = a === b ? a*3 : b/4;
@@ -2608,7 +2610,6 @@ var foo = bar || null;
26082610
var bap = 'bap';
26092611
```
26102612

2611-
26122613
##### Enforcement
26132614

26142615
Code review. TODO: ESLint rule (?).

0 commit comments

Comments
 (0)