Match是一个可以通过使用一些良好的性能去测试JSON数据的JavaScript库。安装:npm install @ozkxr/match用法:比较基元// Numbers match(3.1415, 3.1415) // => true //Strings match('Uno Dos Tres', 'Uno Dos Tres') // => true // Booleans match(false, false) // => true // And with undefined and null values match(undefined, undefined) // => true