Array
Create an array of differences between two arrays
Given two arrays, returns an array of all items that exist in the first array but do not exist in the second array.
import { diff } from 'radash'
const oldWorldGods = ['ra', 'zeus']
const newWorldGods = ['vishnu', 'zeus']
diff(oldWorldGods, newWorldGods) // => ['ra']