Use startsWith and endsWith for readability

This commit is contained in:
Aya Morisawa 2018-08-25 22:42:26 +09:00
parent bf7875bfaa
commit 08a59591ae
No known key found for this signature in database
GPG key ID: 3E64865D70D579F2
7 changed files with 8 additions and 8 deletions

View file

@ -13,7 +13,7 @@ export type TextElementLink = {
export default function(text: string) {
const match = text.match(/^\??\[([^\[\]]+?)\]\((https?:\/\/[\w\/:%#@\$&\?!\(\)\[\]~\.=\+\-]+?)\)/);
if (!match) return null;
const silent = text[0] == '?';
const silent = text.startsWith('?');
const link = match[0];
const title = match[1];
const url = match[2];