mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
angular.module('portainer.helpers')
|
|
.factory('ContainerHelper', [function ContainerHelperFactory() {
|
|
'use strict';
|
|
var helper = {};
|
|
|
|
helper.commandStringToArray = function(command) {
|
|
return splitargs(command);
|
|
};
|
|
|
|
return helper;
|
|
}]);
|