Add types field to package.json

Fixes #500
This commit is contained in:
Sindre Sorhus 2021-07-30 17:30:19 +02:00
parent 48d25d156a
commit 625a285772
9 changed files with 41 additions and 39 deletions

View file

@ -13,7 +13,7 @@ const ESCAPES = new Map([
['0', '\0'],
['\\', '\\'],
['e', '\u001B'],
['a', '\u0007']
['a', '\u0007'],
]);
function unescape(c) {