UNPKG
p111
Version:
latest (1.0.0-beta9)
1.0.0-beta9
p1
p111
/
es
/
index.js
12 lines
•
283 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
function
print
(
str
) {
console
.
log
(str); }
exports
.
print
= print;
function
add
(
value1, value2
) {
return
value1 + value2; }
exports
.
add
= add;
print
(
'Hellow world!'
);
//# sourceMappingURL=index.js.map