| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 'use strict';
- /* eslint object-shorthand: 0 */
- /* eslint no-param-reassign: 0 */
- /* eslint import/no-unresolved: 0 */
- var electron = require('electron');
- var app = electron.app || electron.remote.app;
- var userData = app.getPath('userData');
- var path = require('path');
- function isFunction(functionToCheck) {
- var getType = {};
- return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';
- }
- function tryParseJson(stringJson) {
- var object = void 0;
- try {
- object = JSON.parse(stringJson);
- } catch (e) {
- return e;
- }
- return object;
- }
- function tryStringifyJson(objectJson) {
- if (typeof objectJson === 'string') {
- return objectJson;
- }
- var string = void 0;
- try {
- string = JSON.stringify(objectJson);
- } catch (e) {
- return e;
- }
- return string;
- }
- function getElectronFullPath(filePath) {
- return path.join(userData, filePath);
- }
- function addDotJsonIfNeeded(filePath) {
- if (filePath.substring(filePath.length - 5, filePath.length) === '.json') {
- return filePath;
- }
- return filePath + '.json';
- }
- function processPath(filePath) {
- return addDotJsonIfNeeded(getElectronFullPath(filePath));
- }
- function processPathNoJson(filePath) {
- return getElectronFullPath(filePath);
- }
- module.exports = {
- isFunction: isFunction,
- tryParseJson: tryParseJson,
- tryStringifyJson: tryStringifyJson,
- processPath: processPath,
- processPathNoJson: processPathNoJson
- };
|