Skip to content

Commit

Permalink
fix(vector): corret import path
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTelanie committed Sep 22, 2019
1 parent 910c791 commit 57637a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/point.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @ts-nocheck
import { isArray } from 'util';
import { isArray } from './util';
import {
cachedMethod,
cachedGetter,
Expand Down
2 changes: 1 addition & 1 deletion src/vector.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @ts-nocheck
import { isArray } from 'util';
import { isArray } from './util';
import {
cachedMethod,
cachedGetter,
Expand Down

0 comments on commit 57637a5

Please sign in to comment.