Skip to content
View DCoomer's full-sized avatar
Block or Report

Block or report DCoomer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. taiko taiko Public

    Forked from getgauge/taiko

    A node.js library for testing modern web applications

    JavaScript

  2. Get stack trace for FS async (Solut... Get stack trace for FS async (Solution for https://github.com/nodejs/node/issues/30944)
    1
    // Wrap the caught error in a new Error to get full stacktrace
    2
    const fs = require(`fs`);
    3
      try {
    4
        await fs.promises.readFile(`filePath`).catch((err)=>{
    5
          throw new Error(err);