moander

Results 16 comments of moander

operationId MUST be unique according to the Swagger 2.0 specification. - Unique string used to identify the operation. The id MUST be unique among all operations described in the API....

The `cache: pnpm` option on `actions/setup-node` require pnpm to be present before setup, so in this case corepack cannot be used. I solved it using the following steps: ```yml -...

@michaelstaib the clipboard api ask for permission when called. Put this on your web page and you dump the users clipboard to console every 3 seconds: ```js setInterval(() => navigator.clipboard.readText().then(txt...

Any updates on this? Conflict free: https://github.com/iamkun/dayjs/compare/dev...moander:dayjs:conflict-fix

I'm using the following regex as a quickfix ```js function parseDuration(str) { if (typeof str === 'string' && !str.startsWith('P')) { const regex = /^((?\d+)[. ])?(?\d\d):(?\d\d)(:(?\d\d)(\.(?\d{1,9}))?)?$/ const match = str.match(regex)?.groups if...