Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
'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
};