vue-app-sdk
Version:
21 lines (20 loc) • 561 B
JavaScript
import isObject from "./isObject.js";
import isPrototype from "./_isPrototype.js";
import nativeKeysIn from "./_nativeKeysIn.js";
var objectProto = Object.prototype;
var hasOwnProperty = objectProto.hasOwnProperty;
function baseKeysIn(object) {
if (!isObject(object)) {
return nativeKeysIn(object);
}
var isProto = isPrototype(object), result = [];
for (var key in object) {
if (!(key == "constructor" && (isProto || !hasOwnProperty.call(object, key)))) {
result.push(key);
}
}
return result;
}
export {
baseKeysIn as default
};