mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-21 06:37:36 -04: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';
|
|
}
|