
import { getLibSrcDir } from '../get-lib-src-dir';
import path from 'path';

/**
 * Returns the path to the lib/utils
 */
export function getSnippetPath(): string {
  return path.resolve(getLibSrcDir(), 'utils', 'snippets');
}
