remove node_modules and .gitignore them
This commit is contained in:
-14
@@ -1,14 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var ensureValue = require("../valid-value");
|
||||
|
||||
module.exports = function (object) {
|
||||
ensureValue(object);
|
||||
var result = [];
|
||||
object = Object(object);
|
||||
for (var key in object) {
|
||||
if (!propertyIsEnumerable.call(object, key)) continue;
|
||||
result.push([key, object[key]]);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
Reference in New Issue
Block a user