UNPKG

axe-sarif-converter

Version:

Convert axe-core accessibility scan results to the SARIF format

12 lines (11 loc) 304 B
"use strict"; // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); exports.isEmpty = isEmpty; function isEmpty(arr) { if (arr && arr.length > 0) { return false; } return true; }