UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

14 lines (11 loc) 287 B
"use strict"; var value = require("./valid-value") , objPropertyIsEnumerable = Object.prototype.propertyIsEnumerable; module.exports = function (obj) { var i; value(obj); for (i in obj) { if (objPropertyIsEnumerable.call(obj, i)) return i; } return null; };