Skip to content
View chris-burkhardt's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report chris-burkhardt

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. JS Crypto Encryption Service JS Crypto Encryption Service
    1
    'use strict'
    2
    // use the following online tool for encryption and decryption testing
    3
    // https://www.javainuse.com/aesgenerator
    4
    
                  
    5
    const CryptoJS = require('crypto-js');
  2. JS Upload Base64 Encoded Image to AW... JS Upload Base64 Encoded Image to AWS S3 Bucket
    1
    'use strict'
    2
    const AWS = require("aws-sdk");
    3
    const S3 = new AWS.S3();
    4
    
                  
    5
    module.exports = async function (inputs, context) {
  3. Export CSV File - React/Javascript Export CSV File - React/Javascript
    1
    import { zipObject } from 'lodash';
    2
    
                  
    3
    export const CSVExport = csvData => {
    4
      const { items, headers, filename } = csvData;
    5
    
                  
  4. Remove Array Duplicates with new Set... Remove Array Duplicates with new Set() in JS
    1
    const testArr1 = ['pig', 'fox', 'zebra']
    2
    const testArr2 = ['ferrari', 'fox', 'pig', 'maserati']
    3
    
                  
    4
    // each value of a Set needs to be unique, so combining arrays that have 
    5
    // duplicate entries into a Set will auto-remove exact matches