mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-31 05:50:08 +00:00
* Update eslint * Do eslint --fix * Do not access Object.prototype method 'hasOwnProperty' from target object * utils: add hasProperty * eslint --fix * Disable quote-props for locale files * add back quotes in locale files * revert locale files to state on master * Update react-scripts
6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
/**
|
|
* Converts list into array
|
|
*/
|
|
module.exports = function toArray (list) {
|
|
return Array.prototype.slice.call(list || [], 0)
|
|
}
|