Files
tekelanew_acs/acs/nladmin-ui/node_modules/is-posix-bracket/index.js

11 lines
291 B
JavaScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
/*!
* is-posix-bracket <https://github.com/jonschlinkert/is-posix-bracket>
*
* Copyright (c) 2015-2016, Jon Schlinkert.
* Licensed under the MIT License.
*/
module.exports = function isPosixBracket(str) {
return typeof str === 'string' && /\[([:.=+])(?:[^\[\]]|)+\1\]/.test(str);
};