Skip to content

Commit 2260f3c

Browse files
authored
fix: expose xyEnsureFloat64 (#226)
1 parent 4639c83 commit 2260f3c

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/__tests__/__snapshots__/index.test.ts.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ exports[`test existence of exported functions 1`] = `
108108
"xyToXYObject",
109109
"xyUniqueX",
110110
"xyWeightedMerge",
111+
"xyEnsureFloat64",
111112
"xy2ToXY",
112113
"xreimSortX",
113114
"xreimZeroFilling",

src/xy/__tests__/xyEnsureFloat64.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { xyEnsureFloat64 } from '../xyEnsureFloat64';
1+
import { xyEnsureFloat64 } from '../index';
22

33
test('normal array', () => {
44
const data = {

src/xy/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ export * from './xyToXYArray';
3838
export * from './xyToXYObject';
3939
export * from './xyUniqueX';
4040
export * from './xyWeightedMerge';
41+
export * from './xyEnsureFloat64';

0 commit comments

Comments
 (0)