File size: 346 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
Object.defineProperty(exports, '__esModule', { value: true })
const server_1 = require('next/server')
const createResponse = (...args) => {
return new server_1.NextResponse(...args)
}
exports.createResponse = createResponse
exports.packageName = 'cjs-lib'
// Note: this is a CJS library that used the `NextResponse` export from `next/server`.
|