blob: 24f885c50f64577094aeb97a8f734d1881d48eb9 [file] [log] [blame]
/**
* @flow
*/
export default function LiteralMock(value: string) {
return {
type: 'Literal',
value,
raw: value,
};
}