npm update + fix linked to this update
found an issue with eslint when empty comments were used.
This commit is contained in:
@@ -11,9 +11,9 @@ describe('math', function () {
|
||||
assert.ok(math.transformPoint);
|
||||
assert.ok(math.isIdentity);
|
||||
assert.ok(math.matrixMultiply);
|
||||
assert.equal(typeof math.transformPoint, typeof function () { /* */ });
|
||||
assert.equal(typeof math.isIdentity, typeof function () { /* */ });
|
||||
assert.equal(typeof math.matrixMultiply, typeof function () { /* */ });
|
||||
assert.equal(typeof math.transformPoint, typeof function () { /* empty fn */ });
|
||||
assert.equal(typeof math.isIdentity, typeof function () { /* empty fn */ });
|
||||
assert.equal(typeof math.matrixMultiply, typeof function () { /* empty fn */ });
|
||||
});
|
||||
|
||||
it('Test svgedit.math.transformPoint() function', function () {
|
||||
|
||||
Reference in New Issue
Block a user