laboiteproject/lenuage

View on GitHub
gulp/tasks/copy.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Dependencies
 */
const gulp = require('gulp');

/**
 * Module body
 */
module.exports = (entry, config) => {
  config = config || {};
  return gulp.src(entry, config);
};