UNPKG
@jackfranklin/maths-package-for-blog-post
Version:
latest (0.1.0)
0.1.0
@jackfranklin/maths-package-for-blog-post
/
lib
/
cjs
/
add.js
6 lines
(5 loc)
•
124 B
JavaScript
View Raw
1
2
3
4
5
6
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
add
=
(
x, y
) =>
{
return
x + y; };