[docs] All top-level function exports from @ember/string are missing
See original GitHub issueDespite this being marked as @public
It does not show up as a top-level export here https://www.emberjs.com/api/ember/3.4/modules/@ember%2Fstring
We should be seeing
- dasherize
- camelize
- capitalize
- classify
- decamelize
- fmt
- htmlSafe
- loc
- underscore
- w
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Exported functions are not showing after import in NodeJS
I'm trying to import some async-await functions from a file. However, it seems that none of the exports become visible after importing. I'm ......
Read more >ember-cli-utilities - npm Package Health Analysis - Snyk
Snyk scans all the packages in your projects for vulnerabilities and ... Looks like ember-cli-utilities is missing a security policy.
Read more >ember-source | Yarn - Package Manager
Ember.js is a JavaScript framework that greatly reduces the time, effort and resources needed to build any web application. It is focused on...
Read more >Summary - Ember RFCs
There's a giant list of classes and functions with no hints about how they're related. The API documentation reflects this.
Read more >Read ember 101 - Leanpub
The default export for the ember package is a namespace that // contains all the classes and functions for Ember that are specified...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I chatted with Mike a bit about this, but I think it’s due to missing
@static, or missing a class declaration in the file, or the files are in a path that’s not watched by YUIdocThey are defined as class methods on the
Stringclass so you have to click the String class to see them.After looking at some other functions in the API docs, I think we need to add
@staticand@for @ember/stringto each function, and maybe delete theStringclass comment block, to make them appear as functions in the API docs.