Test name | Executions per second |
---|---|
isApplicationJsonSplit | 2579145.2 Ops/sec |
isApplicationJsonIncludes | 4144491.0 Ops/sec |
var header = "application/json; utf-8";
var isApplicationJsonSplit = (text) =>
text !== undefined &&
text
.split(";")
.map((str) => str.trim())
.some((str) => str === "application/json");
var isApplicationJsonIncludes = (text) =>
text !== undefined &&
text.includes('application/json');
isApplicationJsonSplit(header);
isApplicationJsonIncludes(header);