mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-27 03:08:06 +00:00
15 lines
297 B
JavaScript
15 lines
297 B
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* @emails react-core
|
|
* @flow
|
|
*/
|
|
|
|
import slugify from 'slugify';
|
|
|
|
export default (string: string, directory?: string): string => {
|
|
const filename = slugify(string) + '.html';
|
|
|
|
return directory ? `/${directory}/${filename}` : filename;
|
|
};
|