UNPKG

react-router-ga

Version:

[![Downloads](https://img.shields.io/npm/dm/react-router-ga)](https://npm.im/react-router-ga) [![Version](https://img.shields.io/npm/v/react-router-ga)](https://npm.im/react-router-ga) [![License](https://img.shields.io/npm/l/react-router-ga)](https://ope

20 lines (16 loc) 504 B
'use strict'; const propertyToValueAliases = require('./data/mappings.js'); const matchPropertyValue = function(property, value) { const aliasToValue = propertyToValueAliases.get(property); if (!aliasToValue) { throw new Error(`Unknown property \`${ property }\`.`); } const canonicalValue = aliasToValue.get(value); if (canonicalValue) { return canonicalValue; } throw new Error( `Unknown value \`${ value }\` for property \`${ property }\`.` ); }; module.exports = matchPropertyValue;