UNPKG
nodobjc-x
Version:
latest (2.1.1)
2.1.1
The Node.js ⇆ Objective-C bridge
github.com/TooTallNate/NodObjC
TooTallNate/NodObjC
nodobjc-x
/
test
/
NSMakePoint.js
9 lines
(6 loc)
•
169 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
$ =
require
(
'../'
) , assert =
require
(
'assert'
) $.
import
(
'Foundation'
)
var
point = $.
NSMakePoint
(
10
,
1337
) assert.
equal
(point.
x
,
10
) assert.
equal
(point.
y
,
1337
)