Skip to content
View bsdahl's full-sized avatar
🇺🇸
🇺🇸

Block or report bsdahl

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
bsdahl/README.md

Hi there 👋

Pinned Loading

  1. Watchdog timeout utility for aws ser... Watchdog timeout utility for aws serverless applications.
    1
    export function watchDog(event, context) {
    2
      let messageStack = [];
    3
      let timeoutId;
    4
    
                  
    5
      const push = function(message) {
  2. Function that will find intersecting... Function that will find intersecting keys for n number of object arguments.
    1
    export function intersectingKeys(...objects) {
    2
      return objects
    3
        .map((object) => Object.keys(object))
    4
        .sort((a, b) => a.length - b.length)
    5
        .reduce((a, b) => a.filter((key) => b.includes(key)));
  3. Function to determine if intersectin... Function to determine if intersecting keys are equal
    1
    export function areIntersectingKeysEqual(...objects) {
    2
      return objects
    3
        .map((object) => Object.keys(object))
    4
        .sort((a, b) => a.length - b.length)
    5
        .reduce((a, b) => a.filter((key) => b.includes(key)))
  4. microsoft/vscode microsoft/vscode Public

    Visual Studio Code

    TypeScript 181k 37.4k