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