mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
47bfd046bb
issue #2270 - from https://github.com/manuelmitasch/ghost-admin-ember-demo - Not working properly: added ic-ajax mock in app.js but promise not resolving => loading route always active
6 lines
No EOL
276 B
JavaScript
6 lines
No EOL
276 B
JavaScript
export default function (s) {
|
|
s = s.replace(/(^\s*)|(\s*$)/gi, ""); // exclude start and end white-space
|
|
s = s.replace(/[ ]{2,}/gi, " "); // 2 or more space to 1
|
|
s = s.replace(/\n /, "\n"); // exclude newline with a start spacing
|
|
return s.split(' ').length;
|
|
} |