File tree Expand file tree Collapse file tree 3 files changed +4
-14
lines changed
Expand file tree Collapse file tree 3 files changed +4
-14
lines changed Original file line number Diff line number Diff line change 99 "prepare" : " tsc -p tsconfig.production.es2019.json && webpack" ,
1010 "prepublishOnly" : " TEST_DIST=true npm run test" ,
1111 "clean" : " rm -rf build dist dist.es5" ,
12- "test" : " TS_NODE_FILES=true mocha 'test/**/*.test.ts'" ,
13- "test:cover" : " TS_NODE_FILES=true npx nyc mocha 'test/**/*.test.ts'" ,
12+ "test" : " mocha 'test/**/*.test.ts'" ,
13+ "test:cover" : " npx nyc mocha 'test/**/*.test.ts'" ,
1414 "lint" : " eslint --ext .ts src test" ,
1515 "lint:fix" : " eslint --fix --ext .ts src test && npm run format" ,
1616 "format" : " prettier --write 'src/**/*.ts' 'test/**/*.ts'" ,
Original file line number Diff line number Diff line change 1- import * as ieee754 from "ieee754" ;
21import assert from "assert" ;
32import { decode } from "../src" ;
43
4+ const ieee754 = require ( "ieee754" ) ;
5+
56const FLOAT32_TYPE = 0xca ;
67const FLOAT64_TYPE = 0xcb ;
78
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments