summaryrefslogtreecommitdiffstats
path: root/node_modules/is-extendable/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/is-extendable/index.js')
-rw-r--r--node_modules/is-extendable/index.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/is-extendable/index.js b/node_modules/is-extendable/index.js
deleted file mode 100644
index 4ee71a4..0000000
--- a/node_modules/is-extendable/index.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/*!
- * is-extendable <https://github.com/jonschlinkert/is-extendable>
- *
- * Copyright (c) 2015, Jon Schlinkert.
- * Licensed under the MIT License.
- */
-
-'use strict';
-
-module.exports = function isExtendable(val) {
- return typeof val !== 'undefined' && val !== null
- && (typeof val === 'object' || typeof val === 'function');
-};