data-point icon indicating copy to clipboard operation
data-point copied to clipboard

Combine helpers and utils directories

Open raingerber opened this issue 7 years ago • 0 comments

Problem description:

data-point/lib has a helpers directory and a utils directory, and helpers/index.js actually exports all the utils functions:

module.exports = Object.assign({}, require('./helpers'), require('../utils'))

https://github.com/ViacomInc/data-point/blob/master/packages/data-point/lib/helpers/index.js#L3

Suggested solution:

Combine the helpers and utils directories, since they both serve the same purpose. It might also make sense to move helpers/type-check-functions.js into the reducer-types directory.

raingerber avatar Apr 05 '18 17:04 raingerber