You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In [RFC #1070](https://github.com/emberjs/rfcs/pull/1070), we defined a set of criteria to allow many of the platform native utilities to be used directly within the `<template>...</template>` region of components.
2
+
3
+
<details><summary>That criteria may be viewed here</summary>
4
+
5
+
Criteria for inclusion in this list:
6
+
7
+
Any of:
8
+
- begins with an uppercase letter
9
+
- guaranteed to never be added to glimmer as a keyword (e.g.: globalThis)
10
+
11
+
And:
12
+
- must not need new to invoke
13
+
- must not require lifetime management (e.g.: setTimeout)
14
+
- must not be a single-word lower-case API, because of potential collision with future new HTML elements
15
+
- if the API is a function, the return value should not be a promise
0 commit comments