/home/techb158/balavpn.abdallabala.com/node_modules/has-property-descriptors
NameSizeModeActions
.github/-0777rm
test/-0777rm
.eslintrc1730666editdlrm
.nycrc1390666editdlrm
CHANGELOG.md26480666editdlrm
index.js5880666editdlrm
LICENSE10670666editdlrm
package.json20900666editdlrm
README.md22060666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/has-property-descriptors/index.js (588B)
'use strict'; var $defineProperty = require('es-define-property'); var hasPropertyDescriptors = function hasPropertyDescriptors() { return !!$defineProperty; }; hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() { // node v0.6 has a bug where array lengths can be Set but not Defined if (!$defineProperty) { return null; } try { return $defineProperty([], 'length', { value: 1 }).length !== 1; } catch (e) { // In Firefox 4-22, defining length on an array throws an exception. return true; } }; module.exports = hasPropertyDescriptors;