Add react

This commit is contained in:
2020-12-30 18:08:01 -05:00
parent 2a36f20a4c
commit 8a6e029f83
5268 changed files with 296765 additions and 12 deletions

12
node_modules/base/node_modules/isobject/index.js generated vendored Normal file
View File

@ -0,0 +1,12 @@
/*!
* isobject <https://github.com/jonschlinkert/isobject>
*
* Copyright (c) 2014-2017, Jon Schlinkert.
* Released under the MIT License.
*/
'use strict';
module.exports = function isObject(val) {
return val != null && typeof val === 'object' && Array.isArray(val) === false;
};