4 Matching Annotations
- May 2022
-
rspec.info rspec.info
-
If you have a use case not supported by the existing public APIs, please ask and we'll be glad to add an API for you or make an existing private API public.
please ask
-
- Nov 2020
-
developer.mozilla.org developer.mozilla.org
-
The Object.getPrototypeOf() method returns the prototype (i.e. the value of the internal [[Prototype]] property) of the specified object.
internal: [[Prototype]]
Other times we see something used to indicate it is internal. In fact, this even supersedes proto__. So why did they use a different naming convention? Did they decide [[ ]] is a better naming convention?
-
-
stackoverflow.com stackoverflow.com
-
But using internal api's is dangerous as these may change when you update svelte. If you decide to use this, add a line to your project Readme.md mentioning which internal api's you used and why. Try to write it using other methods when you can.
-
-
stackoverflow.com stackoverflow.com
-
Don't: import { get_store_value } from 'svelte/internal'; There's a public API equivalent
-