UNPKG
awesome-string
Version:
latest (1.1.1)
1.1.1
1.1.0
The ultimate JavaScript string library
hyeonil.github.io
hyeonil/awesome-string
awesome-string
/
src
/
util
/
version.js
14 lines
(13 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * A property that contains the library <a href="http://semver.org/">semantic version number</a>. *
@name
version
*
@static
*
@since
1.0.0 *
@memberOf
Util
*
@type
string
*
@example
* as.version * // => '1.1.0' */
const
version =
'1.1.0'
;
export
default
version;