build
This commit is contained in:
parent
df0650e48d
commit
827c983175
24 changed files with 22150 additions and 20110 deletions
3
docs/dist/parse.js
vendored
3
docs/dist/parse.js
vendored
|
|
@ -90,7 +90,8 @@ export function patternifyAST(ast) {
|
|||
return ast.source_;
|
||||
}
|
||||
const {start, end} = ast.location_;
|
||||
return pure(ast.source_).withLocation({start, end});
|
||||
const value = !isNaN(Number(ast.source_)) ? Number(ast.source_) : ast.source_;
|
||||
return pure(value).withLocation({start, end});
|
||||
}
|
||||
return patternifyAST(ast.source_);
|
||||
case "stretch":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue