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