• File: utils.js
  • Full Path: /var/www/nodejs/Notifications_Imali_API/node_modules/@hapi/hoek/lib/utils.js
  • Date Modified: 10/26/1985 3:15 PM
  • File size: 205 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict';

const internals = {};


exports.keys = function (obj, options = {}) {

    return options.symbols !== false ? Reflect.ownKeys(obj) : Object.getOwnPropertyNames(obj);  // Defaults to true
};