Beispiel #1
0
	it('camelCaseToHuman should humanize string', () => {
		expect(stringUtils.camelCaseToHuman('helloWorldMyFriend')).toBe('Hello World My Friend');
	});
Beispiel #2
0
	it('firstUpper should uppercase first char in string', () => {
		expect(stringUtils.firstUpper('hekko')).toBe('Hekko');
	});