Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/cookies / src / core / toValues.ts
Size: Mime:
import { autofix } from '../deps'
import { config } from '../config'

const autofixOne = (value: any) => autofix(value)
export const toValues = () => {
  const cache = config.get('cache')
  // don't want to send other values in
  return Object.values(cache).map(autofixOne)
}