UNPKG
ceci-core
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
A Go-inspired async library based on ES6 generators
github.com/odf/ceci-core
odf/ceci-core
ceci-core
/
es6.js
10 lines
(7 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
var
extend =
function
(
obj, other
) {
for
(
var
p
in
other) obj[p] = other[p]; };
module
.
exports
=
require
(
'./src/core'
);
extend
(
module
.
exports
,
require
(
'./src/util'
));