mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-07-03 08:57:06 +08:00
5 lines
149 B
JavaScript
5 lines
149 B
JavaScript
import assertString from './util/assertString';
|
|
export default function equals(str, comparison) {
|
|
assertString(str);
|
|
return str === comparison;
|
|
} |