UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

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, }, }; }