UNPKG
flint-babel-core
Version:
beta (5.9.2)
latest (5.9.1)
5.9.2
5.9.1
5.8.54
5.8.53
5.8.52
5.8.51
5.8.50
5.8.47
5.8.46
5.8.45
5.8.39
5.8.38
5.8.35
5.8.34
5.8.33
5.8.32
5.8.31
5.8.28
5.8.27
5.4.8
5.4.7
A compiler for writing next generation JavaScript
babeljs.io
babel/babel
flint-babel-core
/
lib
/
helpers
/
object.js
13 lines
(9 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * Create an object with a `null` prototype. */
"use strict"
;
exports
.
__esModule
=
true
;
exports
[
"default"
] =
function
(
) {
return
Object
.
create
(
null
); };
module
.
exports
=
exports
[
"default"
];