minor fix...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-05-07 09:33:25 +03:00
parent 843e06bebc
commit ce8adb6893

View File

@ -136,8 +136,8 @@ module.path = {
split: function(path){
return this.normalize(path, 'array') },
join: function(path){
return this.normalize(path, 'string') },
join: function(...parts){
return this.normalize(parts.join('/'), 'string') },
}