mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-07 12:28:57 -05:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
'use strict';
|
|
|
|
const internals = {};
|
|
|
|
|
|
exports.keys = function (obj, options = {}) {
|
|
|
|
return options.symbols !== false ? Reflect.ownKeys(obj) : Object.getOwnPropertyNames(obj); // Defaults to true
|
|
};
|