Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mololab
GitHub Repository: mololab/json-translator
Path: blob/master/src/utils/yaml.ts
235 views
1
/**
2
*
3
* @param objectPath path to file
4
* @returns File extension without leading "." ("yml" or "yaml")
5
*/
6
export const matchYamlExt = (objectPath: string) =>
7
objectPath.match(/\.(ya?ml)$/)?.[1];
8
9