mirror of
https://github.com/Azure/setup-kubectl
synced 2025-09-23 20:17:53 +00:00
7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = function(dir, filename) {
|
|
return /^\.\./.test(path.relative(dir, filename));
|
|
};
|