hyper/lib/utils/url-command.js
2018-04-16 07:17:17 -07:00

18 lines
424 B
JavaScript

import path from 'path';
import * as regex from './url-regex';
export default function isUrlCommand(shell, data) {
const matcher = regex[path.parse(shell).name];
if (undefined === matcher || !data) {
return null;
}
const match = data.match(matcher);
const urlRegex = /((?:https?:\/\/)(?:[-a-z0-9]+\.)*[-a-z0-9]+.*)/;
if (match && urlRegex.test(match[2])) {
return `${match[2]}`;
}
return null;
}