@putout/printer 17.8.0 → 17.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ChangeLog +5 -0
- package/lib/tokenize/tokenize.js +1 -5
- package/package.json +1 -1
package/ChangeLog
CHANGED
package/lib/tokenize/tokenize.js
CHANGED
|
@@ -16,7 +16,6 @@ import {
|
|
|
16
16
|
import {parseOverrides} from './overrides/overrides.js';
|
|
17
17
|
|
|
18
18
|
const isObject = (a) => a && typeof a === 'object';
|
|
19
|
-
const {round} = Math;
|
|
20
19
|
const isString = (a) => typeof a === 'string';
|
|
21
20
|
const {assign, freeze} = Object;
|
|
22
21
|
|
|
@@ -193,10 +192,7 @@ export const tokenize = (ast, overrides) => {
|
|
|
193
192
|
traverse,
|
|
194
193
|
});
|
|
195
194
|
|
|
196
|
-
assign(print, write
|
|
197
|
-
space,
|
|
198
|
-
round,
|
|
199
|
-
});
|
|
195
|
+
assign(print, write);
|
|
200
196
|
|
|
201
197
|
const printer = {
|
|
202
198
|
...mainPrinter,
|
package/package.json
CHANGED