mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
import * as appJson from '../app.json'
|
|
|
|
export function getVersion () {
|
|
return appJson.version;
|
|
}
|
|
|
|
export function isDevelopment () {
|
|
return process.env.NODE_ENV === 'development';
|
|
}
|