Diff Checker

Compare two text blocks with LCS-based diffing, side-by-side line mapping, and normalization options.

Input

Output

Unchanged: 3 | Added: 3 | Removed: 1 | Changed: 2

OriginalChanged
1import api from './api'
1import apiClient from './api'
2
2
3export async function fetchUsers() {
3export async function fetchUsers() {
4 const response = await api.get('/users')
-
5 return response.data
4 const response = await apiClient.get('/users')
-
5 return response.data.items
6}
6}
-
7
-
8export const USERS_PAGE_SIZE = 25
Unchanged: 3Added: 3Removed: 1Changed: 2