17 lines
536 B
TypeScript
17 lines
536 B
TypeScript
|
/// <reference path="./typings/main.d.ts" />
|
||
|
import plugins = require("./smartstring.plugins");
|
||
|
|
||
|
/**
|
||
|
* converts an erray of env strings from docker remote api to an usable object.
|
||
|
* @param envArrayArg
|
||
|
* @returns {}
|
||
|
*/
|
||
|
export let makeEnvObject = function(envArrayArg:string[]){
|
||
|
let returnObject = {};
|
||
|
let regexString = /(.*)=(.*)/;
|
||
|
for(let envKey in envArrayArg){
|
||
|
let regexMatches = regexString.exec(envArrayArg[envKey]);
|
||
|
returnObject[regexMatches[1]] = regexMatches[2];
|
||
|
};
|
||
|
return returnObject;
|
||
|
};
|