UNPKG
aion-ics
Version:
latest (1.2.8)
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
Aion DSL language for managing ICalendar data
github.com/aionlang/aion
aionlang/aion
aion-ics
/
src
/
core
/
intepreter
/
helpers
/
getVersion.ts
10 lines
(6 loc)
•
176 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
// @ts-ignore
import
packageJson
from
'../../../../package.json'
;
export
function
getAionVersion
(
) {
const
version = packageJson.
version
;
return
version; }