Steve 'Cutter' Blades
Steve 'Cutter' Blades
More importantly, I would expect the `fromISO()` to parse the string properly, since `new Date.toISOString()` returns the UTC date with the `Z`. If you run that through `fromISO()` right now...
I fixed my issues by adjusting my options ```js { options: { // ... trans: { // ... acorn: { ecmaVersion: 2020 // default is 10, so must override }...
Had similar issues yesterday. Deleted my 'lock' file and node_modules directory, did a fresh install, with the latest version of acorn as a new dependency. Still didn't work. Finally got...
I notice this PR was entered back in 2016. I implemented this locally (dc183a1), and it seems to resolve the scrolling issue with expandable rows. What's required to get the...
If I were to extend moment (plugin), how could I define a 'decade' or a 'century' so that math would work out of the box (`add`, `subtract`, `startOf`, etc). It...
@goto920 Nice! Some good stuff in there.
I am finding that even with location ^~ /lucee { deny all; } I am still able to access the lucee admin. Any ideas?
I built on the work of others and came up with a temporary solution. I do hope they provide some kind of flag, in the future, to get the native...
I have the same question. Comment to follow this thread.
The `globalSetup` example looks like this ```js // global-setup.js import { globalSetup as playwrightGlobalSetup } from 'jest-playwright-preset'; module.exports = async function globalSetup(globalConfig) { await playwrightGlobalSetup(globalConfig); const browserServer = await chromium.launchServer();...