GeoKnow/Jassa-Core

View on GitHub
trash/to-port/facete/PathUtils.js

Summary

Maintainability
A
0 mins
Test Coverage

    ns.PathUtils = {
        parsePathSpec: function(pathSpec) {
            var result = (pathSpec instanceof ns.Path) ? pathSpec : ns.Path.parse(pathSpec); 

            return result;
        }                   
    };