repl.txt (524B)
1 {{alias}}( str[, options] ) 2 Generates an acronym for a given string. 3 4 Parameters 5 ---------- 6 str: string 7 Input string. 8 9 options: Object (optional) 10 Options. 11 12 options.stopwords: Array<string> (optional) 13 Array of custom stop words. 14 15 Returns 16 ------- 17 out: string 18 Acronym for the given string. 19 20 Examples 21 -------- 22 > var out = {{alias}}( 'the quick brown fox' ) 23 'QBF' 24 > out = {{alias}}( 'Hard-boiled eggs' ) 25 'HBE' 26 27 See Also 28 --------