freeCodeCamp/server/middlewares/csurf.js

6 lines
92 B
JavaScript
Raw Normal View History

2016-05-03 00:22:56 +00:00
import csurf from 'csurf';
export default function() {
return csurf({ cookie: true });
}