UNPKG
@lusito/require-libs
Version:
latest (0.15.0)
0.15.0
0.14.0
0.13.0
0.12.0
0.11.0
0.10.0
0.9.0
0.8.3
0.8.2
0.8.1
Some libraries to setup require hooks
@lusito/require-libs
/
dist
/
utils
/
propertyDescriptor.js
12 lines
(11 loc)
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
propertyDescriptor
= propertyDescriptor;
function
propertyDescriptor
(
value
) {
return
{
enumerable
:
false
,
configurable
:
false
,
writable
:
false
, value, }; }