0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 10:45:25 +00:00
OI-codes/AcWing/30/30.js

7 lines
128 B
JavaScript

/**
* @param {string} s
* @param {string} p
* @return {boolean}
*/
const isMatch = (s, p) => new RegExp(`^${p}$`).test(s);