Navigation Menu

Skip to content
View bsdahl's full-sized avatar
๐Ÿ‡บ๐Ÿ‡ธ
๐Ÿ‡บ๐Ÿ‡ธ
Block or Report

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.

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
bsdahl/README.md

Hi there ๐Ÿ‘‹

Pinned

  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 158k 27.6k