mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
'use strict';
|
|
var path = require('path');
|
|
|
|
module.exports = function (str) {
|
|
return path.resolve(str) === path.resolve(process.cwd());
|
|
};
|