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