UNPKG

@graphql-tools/graphql-tag-pluck

Version:
9 lines (8 loc) 274 B
export const getExtNameFromFilePath = (filePath) => { const partials = filePath.split('.'); let ext = '.' + partials.pop(); if (partials.length > 1 && partials[partials.length - 1] === 'flow') { ext = '.' + partials.pop() + ext; } return ext; };