UNPKG

@create-figma-plugin/utilities

Version:

An extensive library of utility functions for common Figma/FigJam plugin/widget operations

12 lines 281 B
export function compareStringArrays(a, b) { if (a.length !== b.length) { return false; } for (const index in a) { if (a[index] !== b[index]) { return false; } } return true; } //# sourceMappingURL=compare-string-arrays.js.map