All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.define-built-in.js Maven / Gradle / Ivy

The newest version!
'use strict';
var createNonEnumerableProperty = require('../internals/create-non-enumerable-property');

module.exports = function (target, key, value, options) {
  if (options && options.enumerable) target[key] = value;
  else createNonEnumerableProperty(target, key, value);
  return target;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy