install-nix-action/lib/utils.js

9 lines
233 B
JavaScript
Raw Permalink Normal View History

2019-09-29 19:52:02 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function extrasperse(elem, array) {
const init = [];
return array.reduce((r, a) => r.concat(elem, a), init);
}
exports.extrasperse = extrasperse;
;