add book.js

This commit is contained in:
nick
2018-03-03 12:11:07 +08:00
parent 51d82157f0
commit a22a8a1bd3
435 changed files with 27430 additions and 0 deletions

12
node_modules/lodash/internal/isObjectLike.js generated vendored Normal file
View File

@ -0,0 +1,12 @@
/**
* Checks if `value` is object-like.
*
* @private
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is object-like, else `false`.
*/
function isObjectLike(value) {
return !!value && typeof value == 'object';
}
module.exports = isObjectLike;