summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-05-16 16:23:25 -0400
committerGitHub <noreply@github.com>2019-05-16 16:23:25 -0400
commit715fe3300e33aa72ed7d4f8d39a021ca8ba54936 (patch)
tree7d24a2d0e04e6f6c99d55936efcd07ba237d9383
parentf7dd691cfb953f7bc1419fe26af5e18f38ab7e84 (diff)
readme: loose port of go's std lib (denoland/deno_std#413)
Original: https://github.com/denoland/deno_std/commit/c2f5a7cf2206a9a476e0e9b116db00ced327f188
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 90e31e799..5eed61cc2 100644
--- a/README.md
+++ b/README.md
@@ -37,4 +37,12 @@ Here are the dedicated documentations of modules:
## Contributing
+deno_std is a loose port of [Go's standard library](https://golang.org/pkg/).
+When in doubt, simply port Go's source code, documentation, and tests. There
+are many times when the nature of JavaScript, TypeScript, or Deno itself
+justifies diverging from Go, but if possible we want to leverage the energy that
+went into building Go. We generally welcome direct ports of Go's code.
+
+Please ensure the copyright headers cite the code's origin.
+
Follow the [style guide](https://deno.land/style_guide.html).