Skip to content

Commit

Permalink
Merge pull request #17 from Turbo87/is-html-safe
Browse files Browse the repository at this point in the history
Add missing import mapping for Ember.String.isHtmlSafe()
  • Loading branch information
rwjblue authored Jul 6, 2017
2 parents 610da1a + 5df3e66 commit b1701b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ JSON data for [RFC #176](https://github.com/emberjs/rfcs/blob/master/text/0176-j
| `Ember.String.decamelize` | `import { decamelize } from "@ember/string"` |
| `Ember.String.fmt` | `import { fmt } from "@ember/string"` |
| `Ember.String.htmlSafe` | `import { htmlSafe } from "@ember/string"` |
| `Ember.String.isHtmlSafe` | `import { isHtmlSafe } from "@ember/string"` |
| `Ember.String.loc` | `import { loc } from "@ember/string"` |
| `Ember.String.underscore` | `import { underscore } from "@ember/string"` |
| `Ember.String.w` | `import { w } from "@ember/string"` |
Expand Down Expand Up @@ -338,6 +339,7 @@ JSON data for [RFC #176](https://github.com/emberjs/rfcs/blob/master/text/0176-j
| `import { decamelize } from "@ember/string"` | `Ember.String.decamelize` |
| `import { fmt } from "@ember/string"` | `Ember.String.fmt` |
| `import { htmlSafe } from "@ember/string"` | `Ember.String.htmlSafe` |
| `import { isHtmlSafe } from "@ember/string"` | `Ember.String.isHtmlSafe` |
| `import { loc } from "@ember/string"` | `Ember.String.loc` |
| `import { underscore } from "@ember/string"` | `Ember.String.underscore` |
| `import { w } from "@ember/string"` | `Ember.String.w` |
Expand Down
1 change: 1 addition & 0 deletions globals.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
"String.decamelize": ["@ember/string", "decamelize"],
"String.fmt": ["@ember/string", "fmt"],
"String.htmlSafe": ["@ember/string", "htmlSafe"],
"String.isHtmlSafe": ["@ember/string", "isHtmlSafe"],
"String.loc": ["@ember/string", "loc"],
"String.underscore": ["@ember/string", "underscore"],
"String.w": ["@ember/string", "w"],
Expand Down

0 comments on commit b1701b8

Please sign in to comment.