UNPKG

next-csrf

Version:

CSRF mitigation library for Next.js

41 lines (38 loc) 1.35 kB
/** * Copyright 2017 The AMP HTML Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS-IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ 'mode strict'; const {hasAttribute} = require('./NodeUtils'); module.exports = { AMP_TAGS: ['amp', '⚡', '⚡4ads', 'amp4ads', '⚡4email', 'amp4email'], AMP_CACHE_HOST: 'https://cdn.ampproject.org', AMP_VALIDATION_RULES_URL: 'https://cdn.ampproject.org/v0/validator.json', AMP_FORMATS: ['AMP', 'AMP4EMAIL', 'AMP4ADS'], AMP_RUNTIME_CSS_PATH: '/v0.css', appendRuntimeVersion: (prefix, version) => prefix + '/rtv/' + version, isTemplate: (node) => { if (node.tagName === 'template') { return true; } if ( node.tagName === 'script' && hasAttribute(node, 'template') && node.attribs.template === 'amp-mustache' ) { return true; } return false; }, };