UNPKG
naked-objects
Version:
latest (0.1.1)
0.1.1
0.1.0
Shorthand notation for Object.create(null) via node module hook
github.com/bahmutov/naked-objects
naked-objects
/
sweet-naked-objects.js
9 lines
(6 loc)
•
212 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// sweet.js syntax for naked objects
// <> is equivalent to Object.create(null)
// which creates new object without inheriting from
// Object.prototype
macro <> { rule {} => {
Object
.
create
(
null
) } }
export
<>