File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ export function computeLineChartAnalysis(values: Array<number | null>): LineChar
340340
341341 /**
342342 * Coefficient of variation : relative volatility
343- * - expressed as a value in the range 0 ... 1.00
343+ * - expressed as a decimal from 0 to 1
344344 * - calculation: standard deviation / mean
345345 * |---------------|----------------------------------------------------------|
346346 * | VALUE | INTERPRETATION |
Original file line number Diff line number Diff line change 11export default eventHandlerWithOAuthSession ( async ( event , oAuthSession , serverSession ) => {
2- // Even though the signOut also clears part of the server cache should be done in order
3- // to let the OAuth package do any other clean up it may need
2+ // Even though the signOut also clears part of the server cache, this should be done in order
3+ // to let the OAuth package do any other clean up it may need
44 await oAuthSession ?. signOut ( )
55 await serverSession . clear ( )
66 return 'Session cleared'
Original file line number Diff line number Diff line change 11import { CACHE_MAX_AGE_ONE_HOUR , NPM_REGISTRY } from '#shared/utils/constants'
22import { FetchError } from 'ofetch'
33
4- // Validation pattern for npm org names - url-safe symbol and not start with a dot (incl. ~test24214. or -ex~-)
4+ // Validation pattern for npm org names - should be a url-safe symbol and not start with a dot (incl. ~test24214. or -ex~-)
55const NPM_ORG_NAME_RE = / ^ [ \w ~ - ] [ \w . ~ - ] * $ /
66
77function validateOrgName ( name : string ) : void {
You can’t perform that action at this time.
0 commit comments