MCPcopy Create free account
hub / github.com/TruthHun/BookStack / ObjectKeys

Function ObjectKeys

static/word2md/mammoth.browser.js:5799–5807  ·  view source on GitHub ↗
(o)

Source from the content-addressed store, hash-verified

5797 var proto = {}.constructor.prototype;
5798
5799 var ObjectKeys = function (o) {
5800 var ret = [];
5801 for (var key in o) {
5802 if (has.call(o, key)) {
5803 ret.push(key);
5804 }
5805 }
5806 return ret;
5807 };
5808
5809 var ObjectGetDescriptor = function(o, key) {
5810 return {value: o[key]};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected