react-activestorage-provider
react-activestorage-provider copied to clipboard
Tag 0.7 code is latest in NPM (and mislabeled 0.8)
Looks like the push NPM a year ago didn't get the bugfix for host and port fix that went into master a year ago. Could you verify that, and hopefully republish?
For example, here is the Helper.js.flow after a fresh install:
➜ cat node_modules/react-activestorage-provider/dist/helpers.js.flow
/**
* @flow
*/
export function compactObject<T: {}>(obj: T): T {
let newObj = { ...obj }
Object.keys(newObj).forEach(
key => newObj[key] === undefined && delete newObj[key]
)
return newObj
}