mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:58:48 +00:00
7 lines
128 B
JavaScript
7 lines
128 B
JavaScript
|
/**
|
||
|
* @param {string} s
|
||
|
* @param {string} p
|
||
|
* @return {boolean}
|
||
|
*/
|
||
|
const isMatch = (s, p) => new RegExp(`^${p}$`).test(s);
|