mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 00:20:53 +00:00
8 lines
233 B
JavaScript
8 lines
233 B
JavaScript
"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;
|
|
;
|