UNPKG

contentful-management

Version:
7 lines 333 B
import { wrapCursorPaginatedCollection } from '../common-utils'; import { freezeSys, toPlainObject } from 'contentful-sdk-core'; export function wrapResource(makeRequest, data) { const resource = toPlainObject(data); return freezeSys(resource); } export const wrapResourceCollection = wrapCursorPaginatedCollection(wrapResource);