diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-07 21:36:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 21:36:20 -0500 |
commit | b20622b2c84ce3ca1781c7bf8e10fed0af1e5001 (patch) | |
tree | 938cdc95f289cdfd482aff77a6ebe44aff80e889 /.eslintrc.json | |
parent | 7d706df66b4cd68d6ac430c2e3e8b9f3a7f4b6ae (diff) |
Core refactor (#1207)
* Copy set intersection functions
* Remove unused functions
* Simplify url check
* Remove parseUrl
* Simplify stringReverse
* Remove hasOwn due to infrequent use
* Rename errorToJson/jsonToError to de/serializeError
For clarity on intended use.
* Fix time argument on timeout
* Add missing return value
* Throw an error for unexpected argument values
* Add documentation comments
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index f9ca5814..94551803 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -99,16 +99,11 @@ "ext/mixed/js/dictionary-data-util.js" ], "globals": { - "errorToJson": "readonly", - "jsonToError": "readonly", + "serializeError": "readonly", + "deserializeError": "readonly", "isObject": "readonly", - "hasOwn": "readonly", "stringReverse": "readonly", "promiseTimeout": "readonly", - "parseUrl": "readonly", - "areSetsEqual": "readonly", - "getSetIntersection": "readonly", - "getSetDifference": "readonly", "escapeRegExp": "readonly", "deferPromise": "readonly", "clone": "readonly", |