Nayeem Rahman
a0bfd92db8
fix: Don't use JSDoc syntax for browser-compatibility headers ( denoland/deno#8960 )
2021-02-01 10:46:58 +00:00
Anh Hong
152f1e68a9
chore: fixed various misspellings and other typos ( denoland/deno#8691 )
2021-02-01 10:46:58 +00:00
Yuki Tanaka
5269f12310
fix(encoding): Rewrite toml parser not to use eval() ( denoland/deno#8624 )
2021-02-01 10:46:58 +00:00
Jesse Jackson
d336162012
fix(encoding/csv): Correct readme formatting due to dprint issues ( denoland/deno#8503 )
2021-02-01 10:46:58 +00:00
Jesse Jackson
ecf5bde405
feat(encoding/csv): Add stringify functionality ( denoland/deno#8408 )
2021-02-01 10:46:58 +00:00
Bartek Iwańczuk
57d903a06b
build: migrate to dlint ( denoland/deno#8176 )
...
This commit migrates repository from using "eslint"
to "dlint" for linting JavaScript code.
2021-02-01 10:46:58 +00:00
timonson
68d4f03e45
fix(encoding): base64 properly encodes mbc and handles Uint8Arrays ( denoland/deno#7807 )
...
Fixes denoland/deno#6094
Fixes denoland/deno#4794
2021-02-01 10:46:58 +00:00
Peter
329b75d1e5
fix: Parsing inline arrays of inline tables in toml ( denoland/deno#7902 )
2021-02-01 10:46:58 +00:00
Cedric Vangout
160ae04418
docs(encoding/csv): update the usage of ParseOptions ( denoland/deno#7857 )
2021-02-01 10:46:58 +00:00
tokiedokie
8567b960f8
docs: version all imports in README ( denoland/deno#7442 )
...
Use $STD_VERSION in README files to automatically
display proper version.
2021-02-01 10:46:58 +00:00
Trivikram Kamat
eb1c38cfbf
docs: end sentences with a period in markdown ( denoland/deno#7813 )
2021-02-01 10:46:58 +00:00
Atakan Ermiş
121500af6c
docs(encoding): add missing JSDoc ( denoland/deno#7809 )
2021-02-01 10:46:58 +00:00
uki00a
1da9818eef
BREAKING(encoding/csv): improve the definition of ParseOptions ( denoland/deno#7714 )
2021-02-01 10:46:58 +00:00
David Sherret
99e0dca320
feat(fmt): Sort named import and export specifiers ( denoland/deno#7711 )
2021-02-01 10:46:58 +00:00
tokiedokie
d3fa1bbf5d
chore: add copyright ( denoland/deno#7593 )
2021-02-01 10:46:58 +00:00
tasshi / Masaharu TASHIRO
50ebf926ca
fix typo miliseconds -> milliseconds ( denoland/deno#7469 )
2021-02-01 10:46:58 +00:00
Casper Beyer
d3f850240c
test(encoding): make tests runnable from any directory ( denoland/deno#7368 )
2021-02-01 10:46:58 +00:00
Jakob Strobl
ed6a8f13c2
fix(encoding/toml): Comment after arrays causing incorrect output ( denoland/deno#7224 )
2021-02-01 10:46:58 +00:00
Yusuke Tanaka
267b83a053
chore(encoding): disable no-control-regex
( denoland/deno#7219 )
2021-02-01 10:46:58 +00:00
Kitson Kelly
d47cdf14aa
feat: update to TypeScript 4.0 ( denoland/deno#6514 )
2021-02-01 10:46:58 +00:00
danielwippermann
d75b9d10b1
fix(encoding/toml): Stop TOML parser from detecting numbers in strings. ( denoland/deno#7064 )
...
Before this patch the TOML parser would incorrect treat the string
"base64data0xdamaged" in a declaration as a hex number because the
corresponding check triggers even when the "0x" is inside a double
quoted string literal as long as it is followed by at least one hex
character.
2021-02-01 10:46:58 +00:00
uki00a
49996e8687
fix(encoding/csv): improve error message on ParseError ( denoland/deno#7057 )
2021-02-01 10:46:58 +00:00
Rauf Islam
61d90c5770
fix(encoding/toml): Add boolean support to stringify ( denoland/deno#6941 )
2021-02-01 10:46:58 +00:00
Jarrett Helton
98f2de9255
fix(toml): parser error with inline comments ( denoland/deno#6942 )
2021-02-01 10:46:58 +00:00
Kid
0819976061
docs(encoding): Fix TOML docs ( denoland/deno#6912 )
2021-02-01 10:46:58 +00:00
Casper Beyer
9c302c2ed0
BREAKING(fs): remove readFileStr and readFileStrSync ( denoland/deno#6848 )
...
This removes the readFileStr and readFileStrSync functions which are
effectively duplicates of Deno.readTextFile and Deno.readTextFileSync.
2021-02-01 10:46:58 +00:00
uki00a
f6b5e3e4ed
fix(encoding/toml): could not parse strings with apostrophes/semicolons ( denoland/deno#6781 )
2021-02-01 10:46:58 +00:00
David Sherret
1425960509
Use dprint for internal formatting ( denoland/deno#6682 )
2021-02-01 10:46:58 +00:00
Opliko
856d3de0c4
feat(encoding): add ascii85 module ( denoland/deno#6711 )
2021-02-01 10:46:58 +00:00
Marcos Casagrande
fae1aba117
BREAKING(encoding/hex): simplify API ( denoland/deno#6690 )
2021-02-01 10:46:58 +00:00
Kitson Kelly
9d4117f963
feat: add --no-check option ( denoland/deno#6456 )
...
This commit adds a "--no-check" option to following subcommands:
- "deno cache"
- "deno info"
- "deno run"
- "deno test"
The "--no-check" options allows to skip type checking step and instead
directly transpiles TS sources to JS sources.
This solution uses `ts.transpileModule()` API and is just an interim
solution before implementing it fully in Rust.
2021-02-01 10:46:58 +00:00
Marcos Casagrande
59a4141bbc
fix: base64 in workers ( denoland/deno#6681 )
2021-02-01 10:46:58 +00:00
Marcos Casagrande
6bae7d68cf
BREAKING(encoding/hex): reorder encode & decode arguments ( denoland/deno#6410 )
...
refactor to match other src/dst methods
2021-02-01 10:46:58 +00:00
Nayeem Rahman
ccb92613f0
refactor: Don't destructure the Deno namespace ( denoland/deno#6268 )
2021-02-01 10:46:58 +00:00
Ryan Dahl
f8eb45e39d
make std deno-lint clean ( denoland/deno#6240 )
...
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2021-02-01 10:46:58 +00:00
Ch3ri0ur
7d411434da
Readme cleanup in encoding and ws ( denoland/deno#6209 )
2021-02-01 10:46:57 +00:00
Oliver Lenehan
431c07de25
feat(encoding/binary): add varnumBytes(), varbigBytes() ( denoland/deno#5173 )
2021-02-01 10:46:57 +00:00
Chris Knight
589fe4bd53
refactor: remove testing dependencies from non-test code ( denoland/deno#5838 )
2021-02-01 10:46:57 +00:00
timonson
1b9f565fb7
feat(encoding): add base64url module ( denoland/deno#5976 )
2021-02-01 10:46:57 +00:00
uki00a
7b1ccf23d3
re-enable the "HugeLines" test case ( denoland/deno#6006 )
2021-02-01 10:46:57 +00:00
uki00a
f7df64f442
docs(encoding/csv): improve the document and jsdoc comments ( denoland/deno#6008 )
2021-02-01 10:46:57 +00:00
skdltmxn
5437ef0705
feat(encoding): add base64 ( denoland/deno#5811 )
2021-02-01 10:46:57 +00:00
pontakornth
11e24677b8
docs: Fix typo ( denoland/deno#5582 )
2021-02-01 10:46:57 +00:00
Dante Calderón
558a04d2e5
Fix typos across the repo ( denoland/deno#5295 )
...
Corrections made:
* cli/js/tests/README.md:44:7: corrected "discoveres" to "discovers"
* cli/js/tests/chown_test.ts:111:37: corrected "priviledge" to "privilege"
* cli/worker.rs:231:56: corrected "decendants" to "descendants"
* deno_typescript/lib.rs:136:50: corrected "emmited" to "emitted"
* core/es_isolate.rs:492:67: corrected "registerd" to "registered"
* core/isolate.rs:103:28: corrected "initalize" to "initialize"
* docs/runtime.md:29:14: corrected "ect" to "etc"
* docs/tools/debugger.md:122:16: corrected "implementes" to "implements"
* encoding/_yaml/dumper/dumper_state.ts:57:63: corrected "everwhere" to "everywhere"
* encoding/csv.ts:37:43: corrected "referal" to "referral"
* fmt/sprintf.ts:209:20: corrected "unusuable" to "unusable"
* fmt/README.md:21:40: corrected "Alternativly" to "Alternatively"
* fmt/README.md:35:68: corrected "seperated" to "separated"
* fmt/README.md:179:59: corrected "provded" to "provided"
* mime/multipart.ts:581:46: corrected "writen" to "written"
* path/_globrex.ts:19:52: corrected "equivelant" to "equivalent"
* node/events_test.ts:447:9: corrected "asyncronous" to "asynchronous"
* node/events_test.ts:475:9: corrected "asyncronous" to "asynchronous"
* node/events_test.ts:500:29: corrected "asyncronous" to "asynchronous"
* node/events_test.ts:530:40: corrected "asyncronous" to "asynchronous"
* node/events_test.ts:555:9: corrected "asyncronous" to "asynchronous"
* tools/deno_tcp_proxy.ts:1:42: corrected "perfromance" to "performance"
* node/module.ts:1003:18: corrected "existend" to "existed"
2021-02-01 10:46:57 +00:00
Nayeem Rahman
fec1c3ba8d
fix(encoding/yaml): Correct exports ( denoland/deno#5191 )
2021-02-01 10:46:57 +00:00
Nayeem Rahman
1eecc5c7d0
BREAKING: reorganization ( denoland/deno#5087 )
...
* Prepend underscores to private modules
* Remove collectUint8Arrays() It would be a misuse of Deno.iter()'s result.
* Move _util/async.ts to async
* Move util/sha*.ts to hash
2021-02-01 10:46:57 +00:00
David Sherret
bd3e3f875a
Move the docs like @param [obj.prop]
to the interface. ( denoland/deno#4974 )
2021-02-01 10:46:57 +00:00
Nayeem Rahman
e4cb19d01d
BREAKING: Remove Deno.EOF, use null instead ( denoland/deno#4953 )
2021-02-01 10:46:57 +00:00
Bartek Iwańczuk
4facff44f2
BREAKING: remove overload of Deno.test() ( denoland/deno#4951 )
...
This commit removes overload of Deno.test() that accepted named
function.
2021-02-01 10:46:57 +00:00
Ryan Dahl
1f1818d379
Move encode, decode helpers to /encoding/utf8.ts, delete /strings/ ( denoland/deno#4565 )
...
also removes encoding/mod.ts and archive/mod.ts which are useless.
2021-02-01 10:46:57 +00:00