New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-append-prepend

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-append-prepend - npm Package Compare versions

Comparing version

to
1.0.9

index.d.ts

26

index.js

@@ -7,7 +7,9 @@ const through = require('through2');

function filesGetContents(filepaths){
if (!(filepaths instanceof Array)) {
filepaths = [filepaths];
}
function arrayify(obj) {
return Array.isArray(obj) ? obj : [obj];
}
function filesGetContents(filepaths) {
filepaths = arrayify(filepaths);
const filesContents = [];

@@ -21,9 +23,7 @@ for (var i = 0; i < filepaths.length; i++) {

function insert(texts, separator, type) {
if(!texts){
if (!texts) {
throw new PluginError(PLUGIN_NAME, 'Missing text or path !');
}
if (!(texts instanceof Array)) {
texts = [texts];
}
texts = arrayify(texts);

@@ -47,3 +47,3 @@ if (type !== "append" && type !== "prepend") {

const stream = through.obj(function(file, enc, cb) {
const stream = through.obj(function (file, enc, cb) {
if (file.isStream()) {

@@ -76,16 +76,16 @@ this.emit('error', new PluginError(PLUGIN_NAME, 'Streams are not supported !'));

module.exports.appendFile = function(filepath, separator) {
module.exports.appendFile = function (filepath, separator) {
return insert(filesGetContents(filepath), separator, "append");
};
module.exports.prependFile = function(filepath, separator) {
module.exports.prependFile = function (filepath, separator) {
return insert(filesGetContents(filepath), separator, "prepend");
};
module.exports.appendText = function(text, separator) {
module.exports.appendText = function (text, separator) {
return insert(text, separator, "append");
};
module.exports.prependText = function(text, separator) {
module.exports.prependText = function (text, separator) {
return insert(text, separator, "prepend");
};
{
"name": "gulp-append-prepend",
"version": "1.0.8",
"version": "1.0.9",
"description": "Simple Gulp plugin to append/prepend.",
"types": "./index.d.ts",
"main": "index.js",

@@ -6,0 +7,0 @@ "keywords": [