Files
30-seconds-of-code/node_modules/eslint-plugin-jsx-a11y/__mocks__/LiteralMock.js
2019-08-20 15:52:05 +02:00

11 lines
136 B
JavaScript

/**
* @flow
*/
export default function LiteralMock(value: string) {
return {
type: 'Literal',
value,
raw: value,
};
}