Skip to content
View richard-openfin's full-sized avatar

Block or report richard-openfin

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 Loading

  1. openfin-playground openfin-playground Public

    JavaScript

  2. ci-cd-playground ci-cd-playground Public

    JavaScript

  3. Get first function caller from a stack Get first function caller from a stack
    1
    const getFnCaller = () => {
    2
      const stack = new Error().stack ?? '';
    3
      return stack.split('at ')[3].split(' ')[0];
    4
    };
    5