選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.js 140 B

123456
  1. 'use strict';
  2. var isPathInside = require('is-path-inside');
  3. module.exports = function (str) {
  4. return isPathInside(str, process.cwd());
  5. };