UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

24 lines (22 loc) 334 B
const defaultParserOptions = { ecmaVersion: 6, ecmaFeatures: { jsx: true, }, }; export default function parserOptionsMapper({ code, errors, options = [], parserOptions = {}, }) { return { code, errors, options, parserOptions: { ...defaultParserOptions, ...parserOptions, }, }; }