First, let's assemble the data. Say we have two sets of objects: Fruits and Vegetables.
const fruits = [
{
name: 'Apple',
color: 'Green'
},
{
name: 'Banana',
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title data-rh="true">Taddy Ink</title> | |
| <meta data-rh="true" itemprop="name" content="Taddy Ink" /> | |
| <meta data-rh="true" itemprop="description" | |
| content="Tools for webtoon creators to build, grow, and monetize their audience." /> | |
| <meta data-rh="true" itemprop="image" content="https://ax0.taddy.org/general/taddy-logo-white-background.png" /> | |
| <meta data-rh="true" name="description" |
| /******************************** | |
| * Module for generating and verifying JWT tokens | |
| * Designed to work on Cloudflare Workers | |
| * Should work in the browser or any env that supports Web Crypto API | |
| ********************************/ | |
| /******************************** | |
| * Key secret is a random Uint8Array of length 64 | |
| * See below for instructions on generating random values / keys | |
| ********************************/ |
First, let's assemble the data. Say we have two sets of objects: Fruits and Vegetables.
const fruits = [
{
name: 'Apple',
color: 'Green'
},
{
name: 'Banana',
| // | |
| // debounce-throttle.swift | |
| // | |
| // Created by Simon Ljungberg on 19/12/16. | |
| // License: MIT | |
| // | |
| import Foundation | |
| extension TimeInterval { |
| // BubbleTransition imported as a pod with Cocoapods: | |
| // | |
| // pod 'BubbleTransition' | |
| // use_frameworks! | |
| // | |
| #import "ViewController.h" | |
| @import BubbleTransition; | |
| @interface ViewController () <UIViewControllerTransitioningDelegate> |