kungfooman / RuntimeTypeInspector.js

Checking JSDoc types at runtime for high-quality types - Trust is good, control is better.
MIT License
8 stars 0 forks source link

Remove extra space after `=>` from `ArrowFunctionExpression` #192

Closed kungfooman closed 3 months ago

kungfooman commented 3 months ago

This only happens for Stringifier and not the Asserter.

Example:

test(() => {
  console.log("test");
});

Output:

test(() =>  {
  console.log("test");
});

(two spaces after =>)