Repository URL to install this package:
|
Version:
4.0.5 ▾
|
import { fromArrayToCookieString } from '../deps'
import { get } from './get'
/**
* @alias getString
*
* @todo this gives a hint we should NOT use objects
* @fixme @yagni
*/
export const fromNameToCookieString = (name: string) => {
const value = get(name) as string[]
return fromArrayToCookieString(value)
}