mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-20 23:18:17 +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;
|
|
} |