frankthelen/phrasal-functions

View on GitHub
src/index.js

Summary

Maintainability
A
0 mins
Test Coverage
const phrasal = require('./phrasal');

module.exports = {
  phrasal: (...configs) => phrasal({}, configs),
  proxy: (target, ...configs) => phrasal(target, configs),
};