mirror of
https://github.com/github/codeql-action.git
synced 2026-05-16 08:10:12 +00:00
8 lines
145 B
JavaScript
8 lines
145 B
JavaScript
class trimmer{
|
|
parse(val){
|
|
if(typeof val === "string") return val.trim();
|
|
else return val;
|
|
}
|
|
}
|
|
|
|
module.exports = trimmer; |