일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 페오엑
- psql
- Front-end
- WebView
- 다이빙
- docker
- hybride
- 젤다의전설
- 엘든링
- 스쿠버다이빙
- 개발툴
- 게임
- window10
- 뱀파이어서바이벌
- guide
- 세부
- Linux
- PostgreSQL
- window
- 어드벤스
- 공략
- 야생의숨결
- 여행
- 취미
- ubuntu
- 오픈워터
- poe2
- 씨홀스
- JS
- JavaScript
- Today
- Total
목록Develop (118)
Rianshin
cookieBaker: { set: function set(cname, cvalue, exdays) { if (!exdays) {exdays = 1;} var d = new Date(); d.setTime(d.getTime() + exdays * 24 * 60 * 60 * 1000); var expires = 'expires=' + d.toUTCString(); document.cookie = cname + '=' + (cvalue || '') + ';' + expires + '; path=' + ctx + ';'; // console.log(document.cookie); }, get: function get(cname) { var name = cname + '='; var decodedCookie =..
parseJson: function parseJson(string) { try { return JSON.parse(string); } catch (e) { throw new JsExecutionErrror('utils - parseJson'); } }, stringifyJson: function stringifyJson(jsonObj, replacer, space) { try { return JSON.stringify(jsonObj, replacer, space); } catch (e) { throw new JsExecutionErrror('utils - stringifyJson'); } },
isIOS: function isIOS() { try { return /iphone|ipad|ipod/i.test(navigator.userAgent.toLowerCase()); } catch (e) { console.log('isIOS'); } },
isAndroid: function isAndroid() { try { return /android/i.test(navigator.userAgent.toLowerCase()); } catch (e) { throw new JsExecutionErrror('utils - isAndroid'); } },
formatter: function () { var date = new Date(); var dateFormatter = function dateFormatter(date, format) { try { var arr = []; var seperator = []; if (date === undefined || date === null) { return null; } if (typeof date === 'string') { arr = date.split(/\D/), seperator = ['', '', '']; if (arr.length === 1) {// 월일년을 따로 넣는다. arr = [date.substr(0, 4), date.substr(4, 2), date.substr(-2)]; } } else ..
#원문 : blog.angular.io/version-11-of-angular-now-available-74721b7952f7 Version 11 of Angular Now Available Version 11.0.0 is here and we’ve got some great updates for Angular developers everywhere. blog.angular.io Angular ver.11이 출시가 되었습니다. 버전 11.0.0이 출시되었으며 모든 곳에서 Angular 개발자를위한 멋진 업데이트가 있습니다. 이 릴리스에는 프레임 워크, CLI 및 구성 요소를 포함한 플랫폼 전반에 대한 업데이트가 있습니다. Let’s dive in! Angular ver.11 바뀐점. Updates on ..