mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-11 15:13:06 +08:00
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
module.exports.parseFlags = (flags) => {
|
|
if (flags != null && typeof flags == "string" && flags.length > 0) {
|
|
return flags.split(" ");
|
|
}
|
|
|
|
return [];
|
|
};
|