The Deno Standard Library
Go to file
Ryan Dahl 4cf39d4a14
Rename assertEq to assertEquals (#242)
After some discussion it was found that assertEquals is more common
in JS (vs assertEqual, assertEq) and sounds better in the negated form:
assertNotEquals vs assertNE.
2019-03-06 19:42:24 -05:00
benching Replace deno.land/x/ with deno.land/std/ (#239) 2019-03-06 10:24:53 -05:00
bytes Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
colors Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
datetime Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
examples Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
flags Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
fs Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
http Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
io Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
log Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
media_types Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
multipart Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
prettier Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
strings feat: multipart, etc.. (#180) 2019-02-10 18:49:48 -05:00
testing Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
textproto Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
ws Rename assertEq to assertEquals (#242) 2019-03-06 19:42:24 -05:00
.editorconfig add charset & trim_trailing_whitespace (#158) 2019-01-26 14:09:53 -05:00
.eslintignore Add eslint for linting (#235) 2019-03-04 19:53:35 -05:00
.eslintrc.json Add eslint for linting (#235) 2019-03-04 19:53:35 -05:00
.gitignore Add eslint for linting (#235) 2019-03-04 19:53:35 -05:00
azure-pipelines.yml Add eslint for linting (#235) 2019-03-04 19:53:35 -05:00
format.ts Change import { x } from "deno" to const { x } = Deno (#218) 2019-02-26 00:35:50 -05:00
LICENSE Happy New Year (#58) 2019-01-02 09:56:17 -05:00
README.md fixing readme link + version (#225) 2019-03-02 15:49:39 -05:00
test.ts Glob integration for the FS walker (#219) 2019-03-02 14:56:19 -05:00
tsconfig.json Add eslint for linting (#235) 2019-03-04 19:53:35 -05:00

Deno Standard Modules

Build Status

These modules do not have external dependencies and they are reviewed by the Deno core team. The intention is to have a standard set of high quality code that all Deno projects can use fearlessly.

Contributions are welcome!

How to use

These modules are tagged in accordance with Deno releases. So, for example, the v0.3.0 tag is guaranteed to work with deno v0.3.0. You can link to v0.3.0 using the URL https://deno.land/std@v0.3.0/

It's strongly recommended that you link to tagged releases rather than the master branch. The project is still young and we expect disruptive renames in the future.

Contributing

Follow the style guide.