dmi3y/csslint-cli

View on GitHub
lib/utils.js

Summary

Maintainability
A
0 mins
Test Coverage
var
    _ = require('lodash'),

    utils = {
        merge: _.merge,
        clone: _.clone,
        mapValues: _.mapValues,
        forOwn: _.forOwn,
        has: _.has,
        transform: _.transform,
        forEach: _.forEach,
        omit: _.omit
    };

module.exports = utils;