2016-05-23 06:15:47 +00:00
|
|
|
import "typings-global";
|
2016-03-20 16:36:38 +00:00
|
|
|
|
|
|
|
import plugins = require("./smartfile.plugins");
|
|
|
|
|
2016-06-23 16:31:55 +00:00
|
|
|
export let filetype = (pathArg:string):string => {
|
|
|
|
let extName = plugins.path.extname(pathArg);
|
|
|
|
let fileType = extName.replace(/\.([a-z]*)/,"$1"); //remove . form fileType
|
|
|
|
return fileType;
|
|
|
|
};
|
|
|
|
|
|
|
|
export let objectFile = (fileStringArg:string, fileTypeArg) => {
|
2016-03-20 16:36:38 +00:00
|
|
|
switch (fileTypeArg) {
|
|
|
|
case "yml" :
|
|
|
|
case "yaml":
|
|
|
|
return plugins.yaml.safeLoad(fileStringArg);
|
|
|
|
case "json":
|
|
|
|
return JSON.parse(fileStringArg);
|
|
|
|
default:
|
|
|
|
plugins.beautylog.error("file type " + fileTypeArg.blue + " not supported");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|