dead-simple-curry
Version:
The simplest currying ever :)
20 lines (18 loc) • 335 B
JavaScript
const webpack = require('webpack');
const path = require('path');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'curry.js',
libraryTarget: 'umd'
},
module: {
rules: [{
test: /\.js$/,
use: [{
loader: 'babel-loader'
}]
}]
}
};