web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
843 B

  1. # ext
  2. _(Previously known as `es5-ext`)_
  3. ## JavaScript language extensions (with respect to evolving standard)
  4. Non-standard or soon to be standard language utilities in a future proof, non-invasive form.
  5. Doesn't enforce transpilation step. Where it's applicable utilities/extensions are safe to use in all ES3+ implementations.
  6. ### Installation
  7. ```bash
  8. npm install ext
  9. ```
  10. ### Utilities
  11. - [`globalThis`](docs/global-this.md)
  12. - `Function`
  13. - [`identity`](docs/function/identity.md)
  14. - `Math`
  15. - [`ceil10`](docs/math/ceil-10.md)
  16. - [`floor10`](docs/math/floor-10.md)
  17. - [`round10`](docs/math/round-10.md)
  18. - `Object`
  19. - [`entries`](docs/object/entries.md)
  20. - `String`
  21. - [`random`](docs/string/random.md)
  22. - `String.prototype`
  23. - [`includes`](docs/string_/includes.md)
  24. - `Thenable.prototype`
  25. - [`finally`](docs/thenable_/finally.md)