Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
33 lines
922 B
JavaScript
33 lines
922 B
JavaScript
import { getDefaultOptions as getInternalDefaultOptions } from "./_lib/defaultOptions.mjs";
|
|
|
|
/**
|
|
* @name getDefaultOptions
|
|
* @category Common Helpers
|
|
* @summary Get default options.
|
|
* @pure false
|
|
*
|
|
* @description
|
|
* Returns an object that contains defaults for
|
|
* `options.locale`, `options.weekStartsOn` and `options.firstWeekContainsDate`
|
|
* arguments for all functions.
|
|
*
|
|
* You can change these with [setDefaultOptions](https://date-fns.org/docs/setDefaultOptions).
|
|
*
|
|
* @returns The default options
|
|
*
|
|
* @example
|
|
* const result = getDefaultOptions()
|
|
* //=> {}
|
|
*
|
|
* @example
|
|
* setDefaultOptions({ weekStarsOn: 1, firstWeekContainsDate: 4 })
|
|
* const result = getDefaultOptions()
|
|
* //=> { weekStarsOn: 1, firstWeekContainsDate: 4 }
|
|
*/
|
|
export function getDefaultOptions() {
|
|
return Object.assign({}, getInternalDefaultOptions());
|
|
}
|
|
|
|
// Fallback for modularized imports:
|
|
export default getDefaultOptions;
|