Skip to content

Commit

Permalink
Document String.prototype HTML methods.
Browse files Browse the repository at this point in the history
Partially fixes #320.
  • Loading branch information
ljharb committed Feb 24, 2015
1 parent 1f17d82 commit a35d819
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,23 @@ details.
* `imul()`
* `fround()`

Math functions accuracy is 1e-11.
Math functions’ accuracy is 1e-11.

* `String.prototype` Annex B HTML methods
These methods are part of "Annex B", which means that although they are a defacto standard, you shouldn't use them. None the less, the `es6-shim` provides them:
* `anchor()`
* `big()`
* `blink()`
* `bold()`
* `fixed()`
* `fontcolor()`
* `fontsize()`
* `italics()`
* `link()`
* `small()`
* `strike()`
* `sub()`
* `sup()`

## Subclassing
The `Map`, `Set`, and `Promise` implementations are subclassable.
Expand Down

0 comments on commit a35d819

Please sign in to comment.