- Log in to post comments
User bio
404 bio not found
Member since May 27, 2021
Posts:
a has not published any posts yet.
Replies:
We registered over 40 public repositories. Installing an artifact or registering a repository cause me the same pain.
- Log in to post comments
Is using the local/enterprise .m2 repository for essential and checked libs a better alternativ?
- Log in to post comments
Certifications & Credly badges:
a has no Certifications & Credly badges yet.
Followers:
a has no followers yet.
Following:
a has not followed anybody yet.
On the side of javascript this will do the job.
str={test1:'true',test0:'false'} Object { test1: "true", test0: "false" } str1 = JSON.stringify(str) '{"test1":"true","test0":"false"}' str1 = str1.replaceAll('"true"','true').replaceAll('"false"','false') '{"test1":true, "test0":false}' str = JSON.parse(str1) Object { test1: true, test0: false }So i have to do it for python also. True and False replace by true and false.